Created
April 19, 2016 21:32
-
-
Save scompo/9ce51025fa08ce2398d9042f3384da4f to your computer and use it in GitHub Desktop.
ApplicationTest without failingTest (part 2)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.github.scompo.walkstats; | |
import static org.junit.Assert.assertNotNull; | |
import org.junit.Test; | |
public class ApplicationTest { | |
@Test | |
public void passingTest() { | |
assertNotNull("application is null", new Application()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment