Home
last modified time | relevance | path

Searched refs:ERR (Results 1 – 4 of 4) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/
DSAXExceptionTest.java26 public static final String ERR = "Houston, we have a problem"; field in SAXExceptionTest
39 SAXException e = new SAXException(ERR, c); in testSAXException_String_Exception()
41 assertEquals(ERR, e.getMessage()); in testSAXException_String_Exception()
51 e = new SAXParseException(ERR, null); in testSAXException_String_Exception()
53 assertEquals(ERR, e.getMessage()); in testSAXException_String_Exception()
59 SAXException e = new SAXException(ERR); in testSAXException_String()
61 assertEquals(ERR, e.getMessage()); in testSAXException_String()
89 SAXException e = new SAXException(ERR); in testToString()
92 assertTrue(s.contains(ERR)); in testToString()
98 assertFalse(s.contains(ERR)); in testToString()
DSAXParseExceptionTest.java27 public static final String ERR = "Houston, we have a problem"; field in SAXParseExceptionTest
47 SAXParseException e = new SAXParseException(ERR, l, c); in testSAXParseException_String_Locator_Exception()
49 assertEquals(ERR, e.getMessage()); in testSAXParseException_String_Locator_Exception()
69 e = new SAXParseException(ERR, null, c); in testSAXParseException_String_Locator_Exception()
71 assertEquals(ERR, e.getMessage()); in testSAXParseException_String_Locator_Exception()
80 e = new SAXParseException(ERR, l, null); in testSAXParseException_String_Locator_Exception()
82 assertEquals(ERR, e.getMessage()); in testSAXParseException_String_Locator_Exception()
99 SAXParseException e = new SAXParseException(ERR, l); in testSAXParseException_String_Locator()
101 assertEquals(ERR, e.getMessage()); in testSAXParseException_String_Locator()
121 e = new SAXParseException(ERR, null); in testSAXParseException_String_Locator()
[all …]
DSAXNotRecognizedExceptionTest.java25 public static final String ERR = "Houston, we have a problem"; field in SAXNotRecognizedExceptionTest
33 SAXNotRecognizedException e = new SAXNotRecognizedException(ERR); in testSAXNotRecognizedException_String()
34 assertEquals(ERR, e.getMessage()); in testSAXNotRecognizedException_String()
DSAXNotSupportedExceptionTest.java25 public static final String ERR = "Houston, we have a problem"; field in SAXNotSupportedExceptionTest
33 SAXNotSupportedException e = new SAXNotSupportedException(ERR); in testSAXNotSupportedException_String()
34 assertEquals(ERR, e.getMessage()); in testSAXNotSupportedException_String()