update test discovery library, use v1.0.490

This commit is contained in:
Sergey Ignatov
2018-09-05 16:48:21 +03:00
parent 5898a8b7f1
commit 39ca70f8dd
3 changed files with 9 additions and 5 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
<component name="libraryTable">
<library name="intellij-coverage" type="repository">
<properties include-transitive-deps="false" maven-id="org.jetbrains.intellij.deps:intellij-coverage-agent:1.0.470" />
<properties include-transitive-deps="false" maven-id="org.jetbrains.intellij.deps:intellij-coverage-agent:1.0.490" />
<CLASSES>
<root url="jar://$MAVEN_REPOSITORY$/org/jetbrains/intellij/deps/intellij-coverage-agent/1.0.470/intellij-coverage-agent-1.0.470.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/org/jetbrains/intellij/deps/intellij-coverage-agent/1.0.490/intellij-coverage-agent-1.0.490.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
+2 -2
View File
@@ -1,8 +1,8 @@
<component name="libraryTable">
<library name="intellij-test-discovery" type="repository">
<properties include-transitive-deps="false" maven-id="org.jetbrains.intellij.deps:intellij-test-discovery-agent:1.0.470" />
<properties include-transitive-deps="false" maven-id="org.jetbrains.intellij.deps:intellij-test-discovery-agent:1.0.490" />
<CLASSES>
<root url="jar://$MAVEN_REPOSITORY$/org/jetbrains/intellij/deps/intellij-test-discovery-agent/1.0.470/intellij-test-discovery-agent-1.0.470.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/org/jetbrains/intellij/deps/intellij-test-discovery-agent/1.0.490/intellij-test-discovery-agent-1.0.490.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
@@ -103,7 +103,6 @@ class IdeaTestDiscoveryProtocolReader implements TestDiscoveryProtocolReader, Te
return;
}
myUsedMethods.putValue(className, methodName);
}
@Override
@@ -115,6 +114,11 @@ class IdeaTestDiscoveryProtocolReader implements TestDiscoveryProtocolReader, Te
public void testDataProcessed() {
myIndex.updateTestData(myTestClassName, myTestMethodName, myUsedMethods, myModuleName, myFrameworkId);
}
@Override
public void processAffectedFile(int[] ints) {
// todo[batkovich] update index
}
};
}