Skip to content

Instantly share code, notes, and snippets.

@scompo
Created April 19, 2016 21:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scompo/9ce51025fa08ce2398d9042f3384da4f to your computer and use it in GitHub Desktop.
Save scompo/9ce51025fa08ce2398d9042f3384da4f to your computer and use it in GitHub Desktop.
ApplicationTest without failingTest (part 2)
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