Home | History | Annotate | Download | only in format

Lines Matching defs:Assert

27 import junit.framework.Assert;
44 Assert.assertEquals("", actualHtmlText);
46 Assert.assertEquals("<p dir=ltr>" + expectedHtmlText + "</p>\n", actualHtmlText);
52 * Assert span exists in the correct location.
59 Assert.assertTrue(seq instanceof Spanned);
63 Assert.assertEquals(0, getNumForegroundColorSpansBetween(spannable, 0, start - 1));
65 Assert.assertEquals(1, getNumForegroundColorSpansBetween(spannable, start, end));
66 Assert.assertEquals(0, getNumForegroundColorSpansBetween(spannable, end + 1,
81 Assert.assertFalse(seq instanceof Spanned);
82 Assert.assertEquals(expected, seq);