DBObjectTest.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?php
  2. /**
  3. * Generated by PHPUnit_SkeletonGenerator on 2014-12-04 at 12:32:38.
  4. */
  5. class DBObjectTest extends PHPUnit_Framework_TestCase {
  6. /**
  7. * @var DBObject
  8. */
  9. protected $object;
  10. /**
  11. * Sets up the fixture, for example, opens a network connection.
  12. * This method is called before a test is executed.
  13. */
  14. protected function setUp() {
  15. $this->object=new DBObject;
  16. }
  17. /**
  18. * Tears down the fixture, for example, closes a network connection.
  19. * This method is called after a test is executed.
  20. */
  21. protected function tearDown() {
  22. }
  23. /**
  24. * @covers DBObject::VariableToDBField
  25. * @todo Implement testVariableToDBField().
  26. */
  27. public function testVariableToDBField() {
  28. // Remove the following lines when you implement this test.
  29. $this->markTestIncomplete(
  30. 'This test has not been implemented yet.'
  31. );
  32. }
  33. /**
  34. * @covers DBObject::DBFieldToVariable
  35. * @todo Implement testDBFieldToVariable().
  36. */
  37. public function testDBFieldToVariable() {
  38. // Remove the following lines when you implement this test.
  39. $this->markTestIncomplete(
  40. 'This test has not been implemented yet.'
  41. );
  42. }
  43. /**
  44. * @covers DBObject::__get
  45. * @todo Implement test__get().
  46. */
  47. public function test__get() {
  48. // Remove the following lines when you implement this test.
  49. $this->markTestIncomplete(
  50. 'This test has not been implemented yet.'
  51. );
  52. }
  53. /**
  54. * @covers DBObject::__set
  55. * @todo Implement test__set().
  56. */
  57. public function test__set() {
  58. // Remove the following lines when you implement this test.
  59. $this->markTestIncomplete(
  60. 'This test has not been implemented yet.'
  61. );
  62. }
  63. /**
  64. * @covers DBObject::Load
  65. * @todo Implement testLoad().
  66. */
  67. public function testLoad() {
  68. // Remove the following lines when you implement this test.
  69. $this->markTestIncomplete(
  70. 'This test has not been implemented yet.'
  71. );
  72. }
  73. /**
  74. * @covers DBObject::Save
  75. * @todo Implement testSave().
  76. */
  77. public function testSave() {
  78. // Remove the following lines when you implement this test.
  79. $this->markTestIncomplete(
  80. 'This test has not been implemented yet.'
  81. );
  82. }
  83. }