Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion src/test/java/com/example/testingweb/SmokeTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,22 @@ public class SmokeTest {
private HomeController controller;

@Test
public void contextLoads() throws Exception {
public void contextLoads() {
assertThat(controller).isNotNull();
}

@Test
public void contextLoads2() throws Exception {
assertThat(controller).isNotNull();
}

@Test
public void contextLoads3() throws Exception {
assertThat(controller).isNotNull();
}

@Test
public void contextLoads4() throws Exception {
assertThat(controller).isNotNull();
}
}