package com.mycompany.app; import junit.framework.Test; import junit.framework.TestSuite; /** * Unit test for simple App. */ public class AppTestSuite extends TestSuite { /** * @return the suite of tests being tested */ public static Test suite() { return new TestSuite( AppTest.class ); } }