You are here

class CoderTestCase in Coder 6.2

Same name and namespace in other branches
  1. 6 scripts/coder_format/tests/CoderTestCase.php \CoderTestCase
  2. 7.2 scripts/coder_format/tests/CoderTestCase.php \CoderTestCase
  3. 7 scripts/coder_format/tests/CoderTestCase.php \CoderTestCase

Hierarchy

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);
  }

}

Members