Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: ignore all the tests that use gradle #955

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import org.apache.commons.io.FileUtils;
import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
Expand Down Expand Up @@ -71,6 +72,7 @@ public void tearDown() throws Exception {
LOGGER.debug("Test Tear-down complete.");
}

@Ignore
@Test
public void compile_whenCleanCompileTestTasksAreAppliedToDSpotTestExampleProject() throws Exception {
LOGGER.info("Starting Gradle Automatic Builder compile() test...");
Expand All @@ -80,6 +82,7 @@ public void compile_whenCleanCompileTestTasksAreAppliedToDSpotTestExampleProject
LOGGER.info("Gradle Automatic Builder compile() test complete.");
}

@Ignore
@Test
public void buildClasspath_whenAppliedToDSpotTestExampleProject() throws Exception {
LOGGER.info("Starting Gradle Automatic Builder buildClasspath() test...");
Expand All @@ -97,6 +100,7 @@ public void buildClasspath_whenAppliedToDSpotTestExampleProject() throws Excepti
LOGGER.info("Gradle Automatic Builder buildClasspath() test complete.");
}

@Ignore
@Test
public void runPit_whenNoTestClassIsSpecified() throws Exception {
LOGGER.info("Starting Gradle Automatic Builder runPit() test when no test class is specified...");
Expand All @@ -108,6 +112,7 @@ public void runPit_whenNoTestClassIsSpecified() throws Exception {
LOGGER.info("Gradle Automatic Builder runPit() test complete when no test class is specified.");
}

@Ignore
@Test
public void runPit_whenTestClassIsSpecified() throws Exception {
LOGGER.info("Starting Gradle Automatic Builder runPit() test when a test class is specified...");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import org.apache.commons.io.FileUtils;
import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
Expand Down Expand Up @@ -66,7 +67,7 @@ public void tearDown() throws Exception {
LOGGER.debug("Test Tear-down complete.");
}


@Ignore
@Test
public void runPit_whenAllDescartesMutatorsAreSpecified() throws Exception {
LOGGER.info("Starting Gradle Automatic Builder runPit() test when a test class is specified...");
Expand Down