Revert "Ignore broken tests until fixed"
This reverts commit 1b5c04a0aec37fb3ecb4910764982eb0f168887f.
This commit is contained in:
@@ -19,7 +19,6 @@ package org.springframework.cloud.launcher.cli;
|
|||||||
import static org.hamcrest.CoreMatchers.containsString;
|
import static org.hamcrest.CoreMatchers.containsString;
|
||||||
import static org.junit.Assert.assertThat;
|
import static org.junit.Assert.assertThat;
|
||||||
|
|
||||||
import org.junit.Ignore;
|
|
||||||
import org.junit.Rule;
|
import org.junit.Rule;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
@@ -32,14 +31,12 @@ public class LauncherCommandTests {
|
|||||||
public OutputCapture output = new OutputCapture();
|
public OutputCapture output = new OutputCapture();
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@Ignore
|
|
||||||
public void testCreateClassLoaderAndListDeployables() throws Exception {
|
public void testCreateClassLoaderAndListDeployables() throws Exception {
|
||||||
new LauncherCommand().run("--list");
|
new LauncherCommand().run("--list");
|
||||||
assertThat(output.toString(), containsString("configserver"));
|
assertThat(output.toString(), containsString("configserver"));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@Ignore
|
|
||||||
public void testNonOptionArgsPassedDown() throws Exception {
|
public void testNonOptionArgsPassedDown() throws Exception {
|
||||||
new LauncherCommand().run("--list", "--", "--spring.profiles.active=test");
|
new LauncherCommand().run("--list", "--", "--spring.profiles.active=test");
|
||||||
assertThat(output.toString(), containsString("foo"));
|
assertThat(output.toString(), containsString("foo"));
|
||||||
|
|||||||
Reference in New Issue
Block a user