Skip to content

Commit 0762f18

Browse files
committed
testing
1 parent ef722ad commit 0762f18

1 file changed

Lines changed: 3 additions & 9 deletions

File tree

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,12 @@
11
package com.example.lostnfound;
22

3-
import org.junit.jupiter.api.Disabled;
43
import org.junit.jupiter.api.Test;
5-
import org.springframework.boot.test.context.SpringBootTest;
6-
import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;
4+
import static org.junit.jupiter.api.Assertions.assertTrue;
75

8-
@SpringBootTest
96
class LostnFoundApplicationTests {
107

118
@Test
12-
@Disabled("Disabled to avoid requiring DB connection for CI/CD")
13-
void contextLoads() {
14-
assertDoesNotThrow(() -> {
15-
// If context loads successfully, this test will pass
16-
});
9+
void simpleTest() {
10+
assertTrue(true, "Basic test to ensure test suite runs");
1711
}
1812
}

0 commit comments

Comments
 (0)