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 w w . j av a 2 s. c o m import java.io.IOException; import org.xmlpull.v1.XmlPullParserException; import android.content.Context; import com.jeffpalm.android.epg.EPGTestUtil; import com.jeffpalm.android.tmz.model.TMZ; /** * Utility methods for testing TMZ things. */ public final class TMZTestUtil { private TMZTestUtil() { } /** * @param context * @return an {@code EPG} for testing. * @throws IOException * @throws XmlPullParserException */ public static TMZ getTMZ(Context context) throws XmlPullParserException, IOException { return new TMZ(EPGTestUtil.getTestEPG(context)); } }