Skip to content
Snippets Groups Projects
Select Git revision
  • 645b28e59403e419043848de11ebf0352ffe7ad1
  • main default protected
2 results

AppTest.java

Blame
  • AppTest.java 284 B
    package com.gpeppard;
    
    import static org.junit.Assert.assertTrue;
    
    import org.junit.Test;
    
    /**
     * Unit test for simple App.
     */
    public class AppTest 
    {
        /**
         * Rigorous Test :-)
         */
        @Test
        public void shouldAnswerWithTrue()
        {
            assertTrue( true );
        }
    }