Back to project page line-chart-view.
The source code is released under:
MIT License
If you think the Android project line-chart-view 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 org.hogel.android.linechartview; /*from www. jav a 2 s . com*/ import android.app.Activity; import org.junit.After; import org.junit.Before; import org.junit.runner.RunWith; import org.robolectric.Robolectric; import org.robolectric.RobolectricTestRunner; @RunWith(RobolectricTestRunner.class) public abstract class ViewTestBase { Activity activity; @Before public void setUp() throws Exception { activity = Robolectric.setupActivity(Activity.class); } @After public void tearDown() throws Exception { } }