Back to project page epgreader-android.
The source code is released under:
Apache License
If you think the Android project epgreader-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.jeffpalm.android.tmz.model; /* w ww .j a va 2 s. c o m*/ import java.io.IOException; import org.xmlpull.v1.XmlPullParserException; import com.jeffpalm.android.tmz.model.TMZ; import com.jeffpalm.android.tmz.model.TMZFactory; import android.test.ActivityTestCase; /** * A test case class to testing TMZ things. */ abstract class TMZFactoryTest extends ActivityTestCase { public void testRead() throws IllegalStateException, XmlPullParserException, IOException { TMZFactory factory = new TMZFactory(); String url = "http://tmz.rnmd.net/vsnaxepg/epgxml.do?carrier=TMZ"; TMZ tmz = factory.read(getActivity(), url); assertNotNull(tmz); } }