Added JUnit dependency to run tests

This commit is contained in:
Erik C. Thauvin 2023-10-22 18:59:48 -07:00
parent 4d4db1b153
commit 33984c4c0d
3 changed files with 10 additions and 3 deletions

View file

@ -1,6 +1,7 @@
package com.example.demo;
import org.junit.jupiter.api.Test;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
@ -9,5 +10,4 @@ class DemoApplicationTest {
@Test
void contextLoads() {
}
}