| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 | 
							- <?php
 
- namespace OSInet\Class_Grapher;
 
- require_once "misc/psr0.php";
 
- spl_autoload_register('psr0_autoload');
 
- /**
 
-  * ClassInstance test case.
 
-  */
 
- class ClassInstanceTest extends \PHPUnit_Framework_TestCase {
 
-   /**
 
-    *
 
-    * @var ClassInstance
 
-    */
 
-   private $ClassInstance;
 
-   /**
 
-    * Prepares the environment before running a test.
 
-    */
 
-   protected function setUp() {
 
-     parent::setUp();
 
-     // TODO Auto-generated ClassInstanceTest::setUp()
 
-     $this->ClassInstance = new ClassInstance(/* parameters */);
 
-   }
 
-   /**
 
-    * Cleans up the environment after running a test.
 
-    */
 
-   protected function tearDown() {
 
-     // TODO Auto-generated ClassInstanceTest::tearDown()
 
-     $this->ClassInstance = null;
 
-     parent::tearDown();
 
-   }
 
-   /**
 
-    * Constructs the test case.
 
-    */
 
-   public function __construct() {
 
-     // TODO Auto-generated constructor
 
-   }
 
-   /**
 
-    * Tests ClassInstance->__construct()
 
-    */
 
-   public function test__construct() {
 
-     // TODO Auto-generated ClassInstanceTest->test__construct()
 
-     $this->markTestIncomplete("__construct test not implemented");
 
-     $this->ClassInstance->__construct(/* parameters */);
 
-   }
 
-   /**
 
-    * Tests ClassInstance->basicAttributes()
 
-    */
 
-   public function testBasicAttributes() {
 
-     // TODO Auto-generated ClassInstanceTest->testBasicAttributes()
 
-     $this->markTestIncomplete("basicAttributes test not implemented");
 
-     $this->ClassInstance->basicAttributes(/* parameters */);
 
-   }
 
- }
 
 
  |