Search in sources :

Example 21 with RootElement

use of android.sax.RootElement in project android_frameworks_base by ResurrectionRemix.

the class SafeSaxTest method testMixedContent.

@SmallTest
public void testMixedContent() throws Exception {
    String xml = "<feed><entry></entry></feed>";
    RootElement root = new RootElement("feed");
    root.setEndTextElementListener(new EndTextElementListener() {

        public void end(String body) {
        }
    });
    try {
        Xml.parse(xml, root.getContentHandler());
        fail("expected exception not thrown");
    } catch (SAXException e) {
    // Expected.
    }
}
Also used : RootElement(android.sax.RootElement) EndTextElementListener(android.sax.EndTextElementListener) SAXException(org.xml.sax.SAXException) SmallTest(android.test.suitebuilder.annotation.SmallTest)

Aggregations

RootElement (android.sax.RootElement)21 SmallTest (android.test.suitebuilder.annotation.SmallTest)18 SAXException (org.xml.sax.SAXException)12 Element (android.sax.Element)9 EndTextElementListener (android.sax.EndTextElementListener)9 EndElementListener (android.sax.EndElementListener)3 ArrayList (java.util.ArrayList)2 ContentValues (android.content.ContentValues)1 Message (android.os.Message)1 StartElementListener (android.sax.StartElementListener)1 SearchResult (com.battlelancer.seriesguide.items.SearchResult)1 FileInputStream (java.io.FileInputStream)1 UnsupportedEncodingException (java.io.UnsupportedEncodingException)1 Date (java.util.Date)1 HashMap (java.util.HashMap)1 HashSet (java.util.HashSet)1 Matcher (java.util.regex.Matcher)1 Nonnull (javax.annotation.Nonnull)1 DateTimeZone (org.joda.time.DateTimeZone)1 LocalTime (org.joda.time.LocalTime)1