Back to project page FruitBasket.
The source code is released under:
GNU Lesser General Public License
If you think the Android project FruitBasket 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 jp.co.icomsys.it21.fruitbasket; /* ww w .jav a2 s.c o m*/ import junit.framework.Assert; import org.junit.After; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.robolectric.RobolectricTestRunner; import org.robolectric.annotation.Config; @Config(emulateSdk = 18) @RunWith(RobolectricTestRunner.class) public class ApplicationTest { @Before public void setup() { } @After public void teardrop() { } @Test public void testSample() { Assert.assertEquals("a", "a"); } }