From 87b5f6237339c16ab512cadb0b54a16100d0ffed Mon Sep 17 00:00:00 2001 From: lobozoldick Date: Wed, 22 May 2024 15:44:15 -0400 Subject: [PATCH] Prueba DUOC --- .../java/com/example/testingweb/SmokeTest.java | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/src/test/java/com/example/testingweb/SmokeTest.java b/src/test/java/com/example/testingweb/SmokeTest.java index 5b69622bb..72c2ffb79 100644 --- a/src/test/java/com/example/testingweb/SmokeTest.java +++ b/src/test/java/com/example/testingweb/SmokeTest.java @@ -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(); } }