aboutsummaryrefslogtreecommitdiffstats
path: root/it
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2015-07-24 16:49:07 +0200
committerSimon Brandhof <simon.brandhof@sonarsource.com>2015-07-24 16:49:42 +0200
commit94c8b938393edc30d7bcd1693c125113a9327a58 (patch)
treec23ead21bfc657c4639c0158af9b6a99a724739d /it
parent191a847984fe81c93e022e147d77707c52b199bb (diff)
downloadsonarqube-94c8b938393edc30d7bcd1693c125113a9327a58.tar.gz
sonarqube-94c8b938393edc30d7bcd1693c125113a9327a58.zip
Revert hacks related to sprint on removal of Decorator
* forbid negative effort to fix on issues * enable VB in plugin tests
Diffstat (limited to 'it')
-rw-r--r--it/it-tests/src/test/java/plugins/PluginsTest.java8
1 files changed, 3 insertions, 5 deletions
diff --git a/it/it-tests/src/test/java/plugins/PluginsTest.java b/it/it-tests/src/test/java/plugins/PluginsTest.java
index 499c3b638c5..ef69102ecb3 100644
--- a/it/it-tests/src/test/java/plugins/PluginsTest.java
+++ b/it/it-tests/src/test/java/plugins/PluginsTest.java
@@ -34,6 +34,7 @@ import plugins.checks.PythonCheck;
import plugins.checks.RpgCheck;
import plugins.checks.SwiftCheck;
import plugins.checks.Validation;
+import plugins.checks.VbCheck;
import plugins.checks.WebCheck;
/**
@@ -45,11 +46,8 @@ public class PluginsTest {
/**
* Temporarily disabled plugins. To be re-enabled.
*/
- static final Set<String> DISABLED_PLUGINS = Sets.newHashSet("devcockpit", "views", /* FIXME */"vb");
+ static final Set<String> DISABLED_PLUGINS = Sets.newHashSet("devcockpit", "views");
- /**
- * See http://license.internal.sonarsource.com/it/
- */
static final Set<String> LICENSED_PLUGINS = Sets.newHashSet(
"abap", "cobol", "cpp", "devcockpit", "objc", "pli", "plsql", "report", "rpg",
"sqale", "swift", "vb", "vbnet", "views");
@@ -63,7 +61,7 @@ public class PluginsTest {
// TODO new PliCheck() is temporarily disabled as PLI plugin does not support multi-language feature. See sonar-project.properties
static final List<Check> CHECKS = Arrays.asList((Check) new AbapCheck(), new CobolCheck(), new CCheck(), new CppCheck(), new CssCheck(),
new FlexCheck(), new GroovyCheck(), new JavaCheck(), new JavascriptCheck(), new PhpCheck(), new RpgCheck(),
- new PythonCheck(), new SwiftCheck(), /* FIXME new VbCheck(), */ new WebCheck());
+ new PythonCheck(), new SwiftCheck(), new VbCheck(), new WebCheck());
static Orchestrator orchestrator;