mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-27 04:19:03 +00:00
Upgrade tests to Junit5
See gh-14737
This commit is contained in:
+5
-11
@@ -16,13 +16,11 @@
|
||||
|
||||
package sample.data.ldap;
|
||||
|
||||
import org.junit.ClassRule;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.junit.jupiter.api.extension.ExtendWith;
|
||||
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.boot.test.rule.OutputCapture;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
import org.springframework.boot.test.extension.OutputCapture;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
|
||||
@@ -31,16 +29,12 @@ import static org.assertj.core.api.Assertions.assertThat;
|
||||
*
|
||||
* @author Phillip Webb
|
||||
*/
|
||||
@RunWith(SpringRunner.class)
|
||||
@ExtendWith(OutputCapture.class)
|
||||
@SpringBootTest
|
||||
public class SampleLdapApplicationTests {
|
||||
|
||||
@ClassRule
|
||||
public static OutputCapture outputCapture = new OutputCapture();
|
||||
|
||||
@Test
|
||||
public void testDefaultSettings() {
|
||||
String output = outputCapture.toString();
|
||||
public void testDefaultSettings(OutputCapture output) {
|
||||
assertThat(output).contains("cn=Alice Smith");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user