Skip to content

Instantly share code, notes, and snippets.

@scompo
Created April 19, 2016 20:25
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/928def1ca8d4460708f4593ef5854e52 to your computer and use it in GitHub Desktop.
Save scompo/928def1ca8d4460708f4593ef5854e52 to your computer and use it in GitHub Desktop.
Dumb ApplicationTest (part 2)
package com.github.scompo.walkstats;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.fail;
import org.junit.Test;
public class ApplicationTest {
@Test
public void failingTest() {
fail("this fails!");
}
@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