packagegrpchelloserver;importjunit.framework.Test;importjunit.framework.TestCase;importjunit.framework.TestSuite;/** * Unit test for simple App. */publicclassAppTestextendsTestCase{/** * Create the test case * * @param testName name of the test case */publicAppTest(StringtestName){super(testName);}/** * @return the suite of tests being tested */publicstaticTestsuite(){returnnewTestSuite(AppTest.class);}/** * Rigourous Test :-) */publicvoidtestApp(){assertTrue(true);}}