wuxw
2020-02-03 b3c79c2addbccedef3eb29c2befe77803bfd106b
OrderService/src/test/java/com/java110/AppTest.java
@@ -1,37 +1,19 @@
package com.java110;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import static org.junit.Assert.assertTrue;
import org.junit.Test;
/**
 * Unit test for simple App.
 */
public class AppTest 
    extends TestCase
{
    /**
     * Create the test case
     *
     * @param testName name of the test case
     * Rigorous Test :-)
     */
    public AppTest( String testName )
    {
        super( testName );
    }
    /**
     * @return the suite of tests being tested
     */
    public static Test suite()
    {
        return new TestSuite( AppTest.class );
    }
    /**
     * Rigourous Test :-)
     */
    public void testApp()
    @Test
    public void shouldAnswerWithTrue()
    {
        assertTrue( true );
    }