Package hudson.plugins.testng.results
Class TestNGTestResult
- java.lang.Object
-
- hudson.plugins.testng.results.TestNGTestResult
-
public class TestNGTestResult extends Object
Represents a single TestNG XML<test>
tag.- Author:
- nullin
-
-
Constructor Summary
Constructors Constructor Description TestNGTestResult(String name)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addClassList(List<ClassResult> classList)
Adds only the classes that already aren't part of the listList<ClassResult>
getClassList()
String
getName()
-
-
-
Constructor Detail
-
TestNGTestResult
public TestNGTestResult(String name)
-
-
Method Detail
-
getClassList
public List<ClassResult> getClassList()
-
getName
public String getName()
-
addClassList
public void addClassList(List<ClassResult> classList)
Adds only the classes that already aren't part of the list- Parameters:
classList
- list of class results
-
-