diff options
Diffstat (limited to 'scripts/dev/generate-phpt/src/gtTestCaseWriter.php')
-rw-r--r-- | scripts/dev/generate-phpt/src/gtTestCaseWriter.php | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/scripts/dev/generate-phpt/src/gtTestCaseWriter.php b/scripts/dev/generate-phpt/src/gtTestCaseWriter.php new file mode 100644 index 0000000000..cc57863d9b --- /dev/null +++ b/scripts/dev/generate-phpt/src/gtTestCaseWriter.php @@ -0,0 +1,27 @@ +<?php + +/** + * Writes a single test case to a file + * + */ +class gtTestCaseWriter { + + public static function write($name, $string, $type, $count = 0) { + if ($type == 'b') { + $fileName = $name."_basic.phpt"; + } + + if ($type == 'e') { + $fileName = $name."_error.phpt"; + } + + if ($type == 'v') { + $fileName = $name."_variation".$count.".phpt"; + } + + $fh = fopen($fileName, 'w'); + fwrite ($fh, $string); + fclose($fh); + } +} +?>
\ No newline at end of file |