I'm trying to do clean and install on my Spring Boot project in before creating the Jar file for my project however I came across this error
java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=...) with your test
I'm new to Spring Boot and have never really utilized the test function of it. So my test class is pretty much default of how it was initially created with the project.
My test class
package com.Alex.demo;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class WebAppApplicationTests {
@Test
void contextLoads() {
}
}
File directory
@RunWith(SpringRunner.class)
works
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With