Changeset 1484
- Timestamp:
- 03/30/08 23:58:03 (8 months ago)
- Files:
-
- trunk/src/test/php/net/stubbles/php/PHPTestSuite.php (modified) (1 diff)
- trunk/src/test/php/net/stubbles/php/string/stubAbstractStringEncoderTestCase.php (modified) (1 diff)
- trunk/src/test/php/net/stubbles/php/string/stubBase64EncoderTestCase.php (added)
- trunk/src/test/php/net/stubbles/php/string/stubHTMLSpecialCharsEncoderTestCase.php (added)
- trunk/src/test/php/net/stubbles/php/string/stubURLEncoderTestCase.php (added)
- trunk/src/test/php/net/stubbles/php/string/stubUTF8EncoderTestCase.php (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/test/php/net/stubbles/php/PHPTestSuite.php
r1335 r1484 34 34 $suite->addTestFile($dir . '/string/stubAbstractDecoratedStringEncoderTestCase.php'); 35 35 $suite->addTestFile($dir . '/string/stubAbstractStringEncoderTestCase.php'); 36 $suite->addTestFile($dir . '/string/stubBase64EncoderTestCase.php'); 37 $suite->addTestFile($dir . '/string/stubHTMLSpecialCharsEncoderTestCase.php'); 36 38 $suite->addTestFile($dir . '/string/stubMd5EncoderTestCase.php'); 37 39 $suite->addTestFile($dir . '/string/stubRecursiveStringEncoderTestCase.php'); 40 $suite->addTestFile($dir . '/string/stubURLEncoderTestCase.php'); 41 $suite->addTestFile($dir . '/string/stubUTF8EncoderTestCase.php'); 38 42 return $suite; 39 43 } trunk/src/test/php/net/stubbles/php/string/stubAbstractStringEncoderTestCase.php
r1304 r1484 91 91 $this->abstractEncoder->apply('foo', 'invalid'); 92 92 } 93 94 /** 95 * string encoders are reversible by default 96 * 97 * @test 98 */ 99 public function alwaysReversibleByDefault() 100 { 101 $this->assertTrue($this->abstractEncoder->isReversible()); 102 } 93 103 } 94 104 ?>
