diff options
author | Belen Pruvost <belen.pruvost@sonarsource.com> | 2022-05-11 22:17:29 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-05-16 20:03:56 +0000 |
commit | e774fdb3e5fbb4d6153b4379fc0af5606d1fcab3 (patch) | |
tree | 050163f52efa6f4bfff54ebcacde7bfd6cc20971 /server/sonar-main/src/test/java/org | |
parent | 67ce5b054754e4556ad4613d34311d7408d8cb52 (diff) | |
download | sonarqube-e774fdb3e5fbb4d6153b4379fc0af5606d1fcab3.tar.gz sonarqube-e774fdb3e5fbb4d6153b4379fc0af5606d1fcab3.zip |
SONAR-16372 - Push IssueChangedEvents
Diffstat (limited to 'server/sonar-main/src/test/java/org')
-rw-r--r-- | server/sonar-main/src/test/java/org/sonar/application/cluster/AppNodesClusterHostsConsistencyTest.java | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/server/sonar-main/src/test/java/org/sonar/application/cluster/AppNodesClusterHostsConsistencyTest.java b/server/sonar-main/src/test/java/org/sonar/application/cluster/AppNodesClusterHostsConsistencyTest.java index 3c4b5235f5c..13581a4d364 100644 --- a/server/sonar-main/src/test/java/org/sonar/application/cluster/AppNodesClusterHostsConsistencyTest.java +++ b/server/sonar-main/src/test/java/org/sonar/application/cluster/AppNodesClusterHostsConsistencyTest.java @@ -40,8 +40,10 @@ import org.junit.After; import org.junit.Before; import org.junit.Test; import org.sonar.application.config.TestAppSettings; -import org.sonar.core.util.RuleActivationListener; -import org.sonar.core.util.RuleSetChangedEvent; +import org.sonar.core.util.issue.IssueChangeListener; +import org.sonar.core.util.issue.IssueChangedEvent; +import org.sonar.core.util.rule.RuleActivationListener; +import org.sonar.core.util.rule.RuleSetChangedEvent; import org.sonar.process.cluster.hz.DistributedAnswer; import org.sonar.process.cluster.hz.DistributedCall; import org.sonar.process.cluster.hz.DistributedCallback; @@ -207,6 +209,16 @@ public class AppNodesClusterHostsConsistencyTest { } @Override + public void subscribeIssueChangeTopic(IssueChangeListener listener) { + + } + + @Override + public void publishEvent(IssueChangedEvent event) { + + } + + @Override public void close() { } |