diff --git a/src/test/java/com/example/securitydemo/SecuritydemoApplicationTests.java b/src/test/java/com/example/securitydemo/SecuritydemoApplicationTests.java index c74c1e6..d15d1c5 100644 --- a/src/test/java/com/example/securitydemo/SecuritydemoApplicationTests.java +++ b/src/test/java/com/example/securitydemo/SecuritydemoApplicationTests.java @@ -1,5 +1,6 @@ package com.example.securitydemo; +import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.springframework.boot.test.context.SpringBootTest; @@ -10,4 +11,9 @@ class SecuritydemoApplicationTests { void contextLoads() { } + @BeforeEach + public void beforeEach() { + System.out.println("Sample Case"); + } + }