From 58fca22bea9dc2cb93104f95f163f556423aef8b Mon Sep 17 00:00:00 2001 From: nikhil9272 <46135261+nikhil9272@users.noreply.github.com> Date: Sun, 15 Sep 2024 23:49:26 +0530 Subject: [PATCH] Add Test File --- .../example/securitydemo/SecuritydemoApplicationTests.java | 6 ++++++ 1 file changed, 6 insertions(+) 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"); + } + }