mirror of
https://github.com/ityouknow/spring-boot-examples.git
synced 2026-09-03 07:27:38 +08:00
18 lines
367 B
Java
18 lines
367 B
Java
package com.neo;
|
|
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
import org.springframework.boot.test.context.SpringBootTest;
|
|
import org.springframework.test.context.junit4.SpringRunner;
|
|
|
|
@RunWith(SpringRunner.class)
|
|
@SpringBootTest
|
|
public class MultiMongodbApplicationTests {
|
|
|
|
@Test
|
|
public void contextLoads() {
|
|
System.out.println("hello world");
|
|
}
|
|
|
|
}
|