1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?php
- /**
- * Generated by PHPUnit_SkeletonGenerator on 2014-12-04 at 12:32:38.
- */
- class DBObjectTest extends PHPUnit_Framework_TestCase {
- /**
- * @var DBObject
- */
- 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 DBObject;
- }
- /**
- * Tears down the fixture, for example, closes a network connection.
- * This method is called after a test is executed.
- */
- protected function tearDown() {
-
- }
- /**
- * @covers DBObject::VariableToDBField
- * @todo Implement testVariableToDBField().
- */
- public function testVariableToDBField() {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DBObject::DBFieldToVariable
- * @todo Implement testDBFieldToVariable().
- */
- public function testDBFieldToVariable() {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DBObject::__get
- * @todo Implement test__get().
- */
- public function test__get() {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DBObject::__set
- * @todo Implement test__set().
- */
- public function test__set() {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DBObject::Load
- * @todo Implement testLoad().
- */
- public function testLoad() {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DBObject::Save
- * @todo Implement testSave().
- */
- public function testSave() {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- }
|