12 lines
234 B
Java
12 lines
234 B
Java
package ru.team58.profileservice;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
import org.springframework.boot.test.context.SpringBootTest;
|
|
|
|
@SpringBootTest
|
|
public class ProfileServiceTest {
|
|
@Test
|
|
public void contextLoads() {
|
|
|
|
}
|
|
}
|