Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
minor tweaks and updated README
  • Loading branch information
nullin committed Jun 29, 2016
1 parent a438c7a commit e601ea3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions README
Expand Up @@ -16,6 +16,9 @@ graph and all details about which tests that failed are also presented.
Release Notes
-------

### Upcoming
* Added: Update to new parent POM (jglick)

### 1.13
* Fixed: JENKINS-34822 - TestNG plugin has incorrect default threshold values

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/hudson/plugins/testng/parser/ResultsParser.java
Expand Up @@ -209,7 +209,7 @@ public TestNGResult parse(FilePath[] paths) {
currentCDATAParent = TAGS.FULL_STACKTRACE;
break;
default:
// TODO do we wish to log information about other tags, or silently ignore them?
log("Encountered unknown tag: '" + tag + "'");
}
break;
// all closing tags
Expand Down Expand Up @@ -253,7 +253,7 @@ public TestNGResult parse(FilePath[] paths) {
currentCDATAParent = TAGS.UNKNOWN;
break;
default:
// TODO ditto
log("Encountered unknown tag: '" + tag + "'");
}
break;
// all cdata reading
Expand Down
Expand Up @@ -3,7 +3,8 @@
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import java.io.Serializable;

@SuppressFBWarnings(value="NM_CLASS_NOT_EXCEPTION", justification="TODO no Javadoc, unclear why this is not an Exception")
@SuppressFBWarnings(value="NM_CLASS_NOT_EXCEPTION",
justification="Not an exception, but represents one associated with a test result parsed by this plugin")
@SuppressWarnings("serial")
public class MethodResultException implements Serializable {

Expand Down

0 comments on commit e601ea3

Please sign in to comment.