Home | History | Annotate | Download | only in framework

Lines Matching refs:expected

15      * @param expected the expected string value
18 public ComparisonFailure (String message, String expected, String actual) {
20 fExpected= expected;
26 * place of common suffix between expected and actual.
47 String actual, expected;
51 expected= fExpected;
54 expected= fExpected.substring(i, j+1);
57 expected= "..."+expected;
62 expected= expected+"...";
66 return Assert.format(super.getMessage(), expected, actual);