<?php
require_once 'PHPUnit/Framework.php';
require_once dirname(__FILE__).'/../../DBO/AccountDBO.class.php';
/**
* Test class for AccountDBO.
* Generated by PHPUnit on 2010-05-02 at 11:49:18.
*/
class AccountDBOTest extends PHPUnit_Framework_TestCase {
/**
* @var AccountDBO
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp() {
$this->object = new AccountDBO;
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown() {
}
public function testSetID() {
$this->object->setID(346);
$this->assertEquals($this->object->getID(), 346);
}
public function testGetID() {
$this->assertNull($this->object->getID());
$this->object->setID(346);
$this->assertEquals($this->object->getID(), 346);
$this->object->setID(-3421);
$this->assertEquals($this->object->getID(), -3421);
}
public function test__toString() {
$this->assertNull($this->object->__toString());
$this->object->setID(346);
$this->assertEquals($this->object->__toString(), '346');
}
public function testSetUsername() {
$this->object->setUsername('radboy');
$this->assertEquals($this->object->getUsername(), 'radboy');
}
public function testGetUsername() {
$this->assertNull($this->object->getUsername());
$this->object->setUsername('radboy');
$this->assertEquals($this->object->getUsername(), 'radboy');
}
/**
* @todo Implement testGetUserDBO().
*/
public function testGetUserDBO() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testSetType().
*/
public function testSetType() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testGetType().
*/
public function testGetType() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testSetStatus().
*/
public function testSetStatus() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testGetStatus().
*/
public function testGetStatus() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testSetBillingStatus().
*/
public function testSetBillingStatus() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testGetBillingStatus().
*/
public function testGetBillingStatus() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testSetBillingDay().
*/
public function testSetBillingDay() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testGetBillingDay().
*/
public function testGetBillingDay() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testSetBusinessName().
*/
public function testSetBusinessName() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testGetBusinessName().
*/
public function testGetBusinessName() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testSetContactName().
*/
public function testSetContactName() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testGetContactName().
*/
public function testGetContactName() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testSetContactEmail().
*/
public function testSetContactEmail() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testGetContactEmail().
*/
public function testGetContactEmail() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testSetAddress1().
*/
public function testSetAddress1() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testGetAddress1().
*/
public function testGetAddress1() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testSetAddress2().
*/
public function testSetAddress2() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testGetAddress2().
*/
public function testGetAddress2() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testSetCity().
*/
public function testSetCity() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testGetCity().
*/
public function testGetCity() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testSetState().
*/
public function testSetState() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testGetState().
*/
public function testGetState() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testSetCountry().
*/
public function testSetCountry() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testGetCountry().
*/
public function testGetCountry() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testSetPostalCode().
*/
public function testSetPostalCode() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testGetPostalCode().
*/
public function testGetPostalCode() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testSetPhone().
*/
public function testSetPhone() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testGetPhone().
*/
public function testGetPhone() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testSetMobilePhone().
*/
public function testSetMobilePhone() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testGetMobilePhone().
*/
public function testGetMobilePhone() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testSetFax().
*/
public function testSetFax() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testGetFax().
*/
public function testGetFax() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testGetBalance().
*/
public function testGetBalance() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testGetAccountName().
*/
public function testGetAccountName() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testGetHostingServices().
*/
public function testGetHostingServices() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testGetDomainServices().
*/
public function testGetDomainServices() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testGetProducts().
*/
public function testGetProducts() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testGetPurchases().
*/
public function testGetPurchases() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
}
?>