agent/src/jetbrains/buildServer/xmlReportPlugin/parsers/nUnit/NUnitXmlReportParser.java [102:125]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            elementsPatternPath(new Handler() {
              public XmlReturn processElement(@NotNull final XmlElementInfo reader) {
                if ("failure".equals(reader.getLocalName())) testData.setSuccess(false);
                return reader.visitChildren(
                  elementsPath(new TextHandler() {
                    public void setText(@NotNull final String text) {
                      testData.setMessage(text.trim());
                    }
                  }, "message"),
                  elementsPath(new TextHandler() {
                    public void setText(@NotNull final String text) {
                      testData.setFailureStackTrace(text.trim());
                    }
                  }, "stack-trace")
                );
              }
            }, "failure|reason")
          ).than(new XmlAction() {
            public void apply() {
              myCallback.testFound(testData);
            }
          });
        }
      }, "test-case");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



agent/src/jetbrains/buildServer/xmlReportPlugin/parsers/nUnit/NUnitXmlReportParser.java [254:277]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            elementsPatternPath(new Handler() {
              public XmlReturn processElement(@NotNull final XmlElementInfo reader) {
                if ("failure".equals(reader.getLocalName())) testData.setSuccess(false);
                return reader.visitChildren(
                  elementsPath(new TextHandler() {
                    public void setText(@NotNull final String text) {
                      testData.setMessage(text.trim());
                    }
                  }, "message"),
                  elementsPath(new TextHandler() {
                    public void setText(@NotNull final String text) {
                      testData.setFailureStackTrace(text.trim());
                    }
                  }, "stack-trace")
                );
              }
            }, "failure|reason")
          ).than(new XmlAction() {
            public void apply() {
              myCallback.testFound(testData);
            }
          });
        }
      }, "test-case");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



