mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 15:09:39 +07:00
service messages lib updated
This commit is contained in:
Binary file not shown.
Binary file not shown.
BIN
lib/src/serviceMessages_275963_src.jar
Normal file
BIN
lib/src/serviceMessages_275963_src.jar
Normal file
Binary file not shown.
@@ -215,7 +215,8 @@ public class OutputToGeneralTestEventsConverter implements ProcessOutputConsumer
|
||||
protected boolean processServiceMessages(final String text,
|
||||
final Key outputType,
|
||||
final ServiceMessageVisitor visitor) throws ParseException {
|
||||
final ServiceMessage message = ServiceMessage.parse(text);
|
||||
// service message parser expects line like "##teamcity[ .... ]" without whitespaces in the end.
|
||||
final ServiceMessage message = ServiceMessage.parse(text.trim());
|
||||
if (message != null) {
|
||||
message.visit(visitor);
|
||||
}
|
||||
@@ -421,6 +422,9 @@ public class OutputToGeneralTestEventsConverter implements ProcessOutputConsumer
|
||||
}
|
||||
|
||||
public void visitTestStarted(@NotNull final TestStarted testStarted) {
|
||||
// TODO
|
||||
// final String locationUrl = testStarted.getLocationHint();
|
||||
|
||||
final String locationUrl = testStarted.getAttributes().get(ATTR_KEY_LOCATION_URL);
|
||||
fireOnTestStarted(testStarted.getTestName(), locationUrl);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user