ClassInstanceTest.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?php
  2. namespace OSInet\Class_Grapher;
  3. require_once "misc/psr0.php";
  4. spl_autoload_register('psr0_autoload');
  5. /**
  6. * ClassInstance test case.
  7. */
  8. class ClassInstanceTest extends \PHPUnit_Framework_TestCase {
  9. /**
  10. *
  11. * @var ClassInstance
  12. */
  13. private $ClassInstance;
  14. /**
  15. * Prepares the environment before running a test.
  16. */
  17. protected function setUp() {
  18. parent::setUp();
  19. // TODO Auto-generated ClassInstanceTest::setUp()
  20. $this->ClassInstance = new ClassInstance(/* parameters */);
  21. }
  22. /**
  23. * Cleans up the environment after running a test.
  24. */
  25. protected function tearDown() {
  26. // TODO Auto-generated ClassInstanceTest::tearDown()
  27. $this->ClassInstance = null;
  28. parent::tearDown();
  29. }
  30. /**
  31. * Constructs the test case.
  32. */
  33. public function __construct() {
  34. // TODO Auto-generated constructor
  35. }
  36. /**
  37. * Tests ClassInstance->__construct()
  38. */
  39. public function test__construct() {
  40. // TODO Auto-generated ClassInstanceTest->test__construct()
  41. $this->markTestIncomplete("__construct test not implemented");
  42. $this->ClassInstance->__construct(/* parameters */);
  43. }
  44. /**
  45. * Tests ClassInstance->basicAttributes()
  46. */
  47. public function testBasicAttributes() {
  48. // TODO Auto-generated ClassInstanceTest->testBasicAttributes()
  49. $this->markTestIncomplete("basicAttributes test not implemented");
  50. $this->ClassInstance->basicAttributes(/* parameters */);
  51. }
  52. }