teste
unknown
java
2 years ago
613 B
5
Indexable
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> <exclusions> <exclusion> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> </exclusion> </exclusions> </dependency> import org.junit.jupiter.api.Test; import org.springframework.boot.test.context.SpringBootTest; //@MockBean //ModuleRepository moduleRepository; @Test public void emptyTest () { System.out.println(Translator.toLocale("model.hello")); assertTrue(true); }
Editor is loading...