I am trying to create a project with unit testing. I already have JUnit5 tests set up in Eclipse. The documentation for unit testing claims that Junit5 is supported. Yet, my JUnit5 imports don’t work. Here are the imports
import static org.junit.jupiter.api.Assertions.*;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
and this is the output I get when I try to run the test
Do I need to change some setting to JUnit5? Thanks!