summaryrefslogtreecommitdiff
path: root/scripts/dev/generate-phpt/src/testcase/gtErrorTestCaseMethod.php
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/dev/generate-phpt/src/testcase/gtErrorTestCaseMethod.php')
-rw-r--r--scripts/dev/generate-phpt/src/testcase/gtErrorTestCaseMethod.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/scripts/dev/generate-phpt/src/testcase/gtErrorTestCaseMethod.php b/scripts/dev/generate-phpt/src/testcase/gtErrorTestCaseMethod.php
index 647e52f93e..fa1c8ca3f1 100644
--- a/scripts/dev/generate-phpt/src/testcase/gtErrorTestCaseMethod.php
+++ b/scripts/dev/generate-phpt/src/testcase/gtErrorTestCaseMethod.php
@@ -27,33 +27,33 @@ class gtErrorTestCaseMethod extends gtErrorTestCase {
*/
public function constructTestCase() {
$this->constructCommonHeaders();
-
+
$this->addErrorEcho();
-
+
$this->constructorArgInit();
$this->constructorCreateInstance();
-
+
$this->constructSubjectCalls();
-
+
$this->constructCommonClosing();
}
-
+
public function testHeader() {
$this->testCase[] = "--TEST--";
$this->testCase[] = "Test class ".$this->subject->getClassName()." method ".$this->subject->getName()."() by calling it more than or less than its expected arguments";
}
-
+
public function subjectCalls() {
// Construct the argument list to pass to the method being tested
$list = $this->subject->getExtraArgumentList();
$this->testCase = gtCodeSnippet::appendBlankLines(1, $this->testCase );
$this->testCase[] = "var_dump(".$this->subject->getName()."( ".$list." ) );";
-
+
$list = $this->subject->getShortArgumentList();
$this->testCase = gtCodeSnippet::appendBlankLines(1, $this->testCase );
$this->testCase[] = "var_dump(".$this->subject->getName()."( ".$list." ) );";
-
+
}
}
?> \ No newline at end of file