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; /*from w ww . ja v a2 s . c o m*/ import com.jeffpalm.android.tmz.model.TMZ; /** * A test case class to testing {@code TMZItem}s. */ abstract class TMZItemTestCase extends TMZTestCase { /** Test classes should call this do run tests on parcelling. */ public void doTestParcelable() { runTestParcelable(getTMZ()); } /** Subclasses must implement this to test parcelling items. */ protected abstract void runTestParcelable(TMZ tmz); }