function CoderTestCase::assertFormat in Coder 6.2
Same name and namespace in other branches
- 6 scripts/coder_format/tests/CoderTestCase.php \CoderTestCase::assertFormat()
- 7.2 scripts/coder_format/tests/CoderTestCase.php \CoderTestCase::assertFormat()
- 7 scripts/coder_format/tests/CoderTestCase.php \CoderTestCase::assertFormat()
File
- scripts/
coder_format/ tests/ CoderTestCase.php, line 11
Class
Code
function assertFormat($input, $expect) {
$result = coder_format_string_all($input);
$this
->assertIdentical($result, $input);
}