Merge pull request #5329 from dkapil/task/BAEL-8962

BAEL-8962 Fix surefire configs of twitterhdfs, spring cloud projects
This commit is contained in:
Loredana Crusoveanu
2018-09-27 11:33:24 +03:00
committed by GitHub
17 changed files with 212 additions and 276 deletions
@@ -0,0 +1,16 @@
package com.baeldung;
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 SpringCloudConfigServerApplicationIntegrationTest {
@Test
public void contextLoads() {
}
}