Migrate Map examples to JUnit 5.

Original pull request: #618.
See #583.
This commit is contained in:
divya_jnu08
2021-04-27 20:30:25 +05:30
committed by Mark Paluch
parent c23d0c6198
commit 3270594ff5

View File

@@ -19,20 +19,19 @@ import static org.assertj.core.api.Assertions.*;
import java.util.List;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.data.map.repository.config.EnableMapRepositories;
import org.springframework.test.context.junit4.SpringRunner;
/**
* Integration tests for {@link PersonRepository}.
*
* @author Oliver Gierke
*/
@RunWith(SpringRunner.class)
@SpringBootTest
public class PersonRepositoryIntegrationTest {