123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- <?php
- namespace Osinet\ClassGrapher\Tests;
- require_once 'Osinet/ClassGrapher/Graph.php';
- require_once 'PHPUnit/Framework/TestCase.php';
- /**
- * Graph test case.
- */
- class GraphTest extends \PHPUnit_Framework_TestCase {
- /**
- *
- * @var Graph
- */
- private $Graph;
- /**
- * Prepares the environment before running a test.
- */
- protected function setUp() {
- parent::setUp();
- // TODO Auto-generated GraphTest::setUp()
- $this->Graph = new Graph(/* parameters */);
- }
- /**
- * Cleans up the environment after running a test.
- */
- protected function tearDown() {
- // TODO Auto-generated GraphTest::tearDown()
- $this->Graph = null;
- parent::tearDown();
- }
- /**
- * Constructs the test case.
- */
- public function __construct() {
- // TODO Auto-generated constructor
- }
- /**
- * Tests Graph->attributes()
- */
- public function testAttributes() {
- // TODO Auto-generated GraphTest->testAttributes()
- $this->markTestIncomplete("attributes test not implemented");
- $this->Graph->attributes(/* parameters */);
- }
- /**
- * Tests Graph->debug()
- */
- public function testDebug() {
- // TODO Auto-generated GraphTest->testDebug()
- $this->markTestIncomplete("debug test not implemented");
- $this->Graph->debug(/* parameters */);
- }
- /**
- * Tests Graph->getFiles()
- */
- public function testGetFiles() {
- // TODO Auto-generated GraphTest->testGetFiles()
- $this->markTestIncomplete("getFiles test not implemented");
- $this->Graph->getFiles(/* parameters */);
- }
- /**
- * Tests Graph->initGraph()
- */
- public function testInitGraph() {
- // TODO Auto-generated GraphTest->testInitGraph()
- $this->markTestIncomplete("initGraph test not implemented");
- $this->Graph->initGraph(/* parameters */);
- }
- /**
- * Tests Graph->registerClass()
- */
- public function testRegisterClass() {
- // TODO Auto-generated GraphTest->testRegisterClass()
- $this->markTestIncomplete("registerClass test not implemented");
- $this->Graph->registerClass(/* parameters */);
- }
- /**
- * Tests Graph->registerInterface()
- */
- public function testRegisterInterface() {
- // TODO Auto-generated GraphTest->testRegisterInterface()
- $this->markTestIncomplete("registerInterface test not implemented");
- $this->Graph->registerInterface(/* parameters */);
- }
- /**
- * Tests Graph->extractGrammar()
- */
- public function testExtractGrammar() {
- // TODO Auto-generated GraphTest->testExtractGrammar()
- $this->markTestIncomplete("extractGrammar test not implemented");
- $this->Graph->extractGrammar(/* parameters */);
- }
- /**
- * Tests Graph->__construct()
- */
- public function test__construct() {
- // TODO Auto-generated GraphTest->test__construct()
- $this->markTestIncomplete("__construct test not implemented");
- $this->Graph->__construct(/* parameters */);
- }
- /**
- * Tests Graph->implementsAttributes()
- */
- public function testImplementsAttributes() {
- // TODO Auto-generated GraphTest->testImplementsAttributes()
- $this->markTestIncomplete("implementsAttributes test not implemented");
- $this->Graph->implementsAttributes(/* parameters */);
- }
- /**
- * Tests Graph->buildSymbols()
- */
- public function testBuildSymbols() {
- // TODO Auto-generated GraphTest->testBuildSymbols()
- $this->markTestIncomplete("buildSymbols test not implemented");
- $this->Graph->buildSymbols(/* parameters */);
- }
- /**
- * Tests Graph->build()
- */
- public function testBuild() {
- // TODO Auto-generated GraphTest->testBuild()
- $this->markTestIncomplete("build test not implemented");
- $this->Graph->build(/* parameters */);
- }
- }
|