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 w w. jav a2 s .co m import com.jeffpalm.android.tmz.model.TMZ; import com.jeffpalm.android.tmz.model.TMZIndexWrapper; /** * Test case for {@code TMZIndexAdapter}. */ public class TMZIndexWrapperTest extends TMZTestCase { public void testGetSections() { TMZ tmz = getTMZ(); TMZIndexWrapper adapter = new TMZIndexWrapper(tmz.getIndex()); assertEquals(3, adapter.getSection("kboe5m_ate3w0_1fts2jn").getSections().size()); } }