class CoderTestCase in Coder 6.2
Same name and namespace in other branches
- 6 scripts/coder_format/tests/CoderTestCase.php \CoderTestCase
- 7.2 scripts/coder_format/tests/CoderTestCase.php \CoderTestCase
- 7 scripts/coder_format/tests/CoderTestCase.php \CoderTestCase
Hierarchy
- class \CoderTestCase extends \DrupalTestCase
Expanded class hierarchy of CoderTestCase
File
- scripts/
coder_format/ tests/ CoderTestCase.php, line 10
View source
class CoderTestCase extends DrupalTestCase {
function assertFormat($input, $expect) {
$result = coder_format_string_all($input);
$this
->assertIdentical($result, $input);
}
}