12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?php
- namespace Osinet\ClassGrapher\Tests;
- require_once "misc/psr0.php";
- spl_autoload_register('psr0_autoload');
- class ClassInstanceTest extends \PHPUnit_Framework_TestCase {
-
- private $ClassInstance;
-
- protected function setUp() {
- parent::setUp();
-
- $this->ClassInstance = new ClassInstance();
- }
-
- protected function tearDown() {
-
- $this->ClassInstance = null;
- parent::tearDown();
- }
-
- public function __construct() {
-
- }
-
- public function test__construct() {
-
- $this->markTestIncomplete("__construct test not implemented");
- $this->ClassInstance->__construct();
- }
-
- public function testBasicAttributes() {
-
- $this->markTestIncomplete("basicAttributes test not implemented");
- $this->ClassInstance->basicAttributes();
- }
- }
|