diff options
Diffstat (limited to 'scripts/dev/generate-phpt/tests/gtErrorTestCaseMethodTest.php')
-rw-r--r-- | scripts/dev/generate-phpt/tests/gtErrorTestCaseMethodTest.php | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/scripts/dev/generate-phpt/tests/gtErrorTestCaseMethodTest.php b/scripts/dev/generate-phpt/tests/gtErrorTestCaseMethodTest.php new file mode 100644 index 0000000..7077881 --- /dev/null +++ b/scripts/dev/generate-phpt/tests/gtErrorTestCaseMethodTest.php @@ -0,0 +1,30 @@ +<?php +require_once 'PHPUnit/Framework.php'; +require_once dirname(__FILE__) . '/../src/gtAutoload.php'; + +class gtErrorTestCaseMethodTest extends PHPUnit_Framework_TestCase { + + + public function testTestCase() { + + $f = new gtMethod('DOMDocument', 'createAttribute'); + $f->setArgumentNames(); + $f->setArgumentLists(); + + $f->setInitialisationStatements(); + + $f->setConstructorArgumentNames(); + $f->setConstructorInitStatements(); + + $optSect = new gtOptionalSections(); + + $btc = gtErrorTestCase::getInstance($optSect,'method'); + $btc->setMethod($f); + $btc->constructTestCase(); + + + $fs = $btc->toString(); + $this->assertTrue(is_string($fs)); + } +} +?>
\ No newline at end of file |