diff options
author | simonbrandhof <simon.brandhof@gmail.com> | 2011-12-31 11:36:44 +0100 |
---|---|---|
committer | simonbrandhof <simon.brandhof@gmail.com> | 2011-12-31 11:36:44 +0100 |
commit | 7a87485a457afd837eb89a1df66d2287b122171d (patch) | |
tree | 4d06026813f44a91cc19ca3d7cf62198cd88dfe4 /sonar-plugin-api | |
parent | 0fb4b06eafa34d1101aacde7d89ae055e80b90ba (diff) | |
download | sonarqube-7a87485a457afd837eb89a1df66d2287b122171d.tar.gz sonarqube-7a87485a457afd837eb89a1df66d2287b122171d.zip |
Remove ignored test
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r-- | sonar-plugin-api/src/test/java/org/sonar/api/batch/AbstractSourceImporterTest.java | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/sonar-plugin-api/src/test/java/org/sonar/api/batch/AbstractSourceImporterTest.java b/sonar-plugin-api/src/test/java/org/sonar/api/batch/AbstractSourceImporterTest.java index 64b868f559e..fb246039a8d 100644 --- a/sonar-plugin-api/src/test/java/org/sonar/api/batch/AbstractSourceImporterTest.java +++ b/sonar-plugin-api/src/test/java/org/sonar/api/batch/AbstractSourceImporterTest.java @@ -82,19 +82,6 @@ public class AbstractSourceImporterTest { } @Test - @Ignore - public void canBeDisabled() { - Project pom = new Project("foo"); - Configuration config = mock(Configuration.class); - when(pom.getConfiguration()).thenReturn(config); - when(config.getBoolean(CoreProperties.CORE_IMPORT_SOURCES_PROPERTY, CoreProperties.CORE_IMPORT_SOURCES_DEFAULT_VALUE)).thenReturn( - Boolean.FALSE); - - assertFalse(importer.isEnabled(pom)); - assertFalse(importer.shouldExecuteOnProject(pom)); - } - - @Test public void doNotSaveSourceIfNullResource() throws IOException { AbstractSourceImporter nullImporter = new AbstractSourceImporter(Java.INSTANCE) { |