Add integration tests for the server components

This commit is contained in:
Dave Syer
2017-03-07 09:40:57 +00:00
parent ec4e962997
commit a055893243
9 changed files with 129 additions and 71 deletions

View File

@@ -0,0 +1,17 @@
package org.springframework.cloud.launcher.eureka;
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("spring.cloud.bus.enabled=false")
public class DeployerApplicationTests {
@Test
public void contextLoads() {
}
}