Fixed examples for IDEA.

This commit is contained in:
Erik C. Thauvin 2018-07-03 14:01:36 -07:00
parent 964ddf5168
commit 17f2d1ad80
69 changed files with 847 additions and 200 deletions

View file

@ -5,7 +5,7 @@ import static org.junit.jupiter.api.Assertions.assertNotNull;
class AppTest {
@Test
void testAppHasAGreeting() {
App classUnderTest = new App();
final App classUnderTest = new App();
assertNotNull("app should have a greeting", classUnderTest.getGreeting());
}
}