Package org.sonar.plugins.python.xunit
Class TestResult
- java.lang.Object
-
- org.sonar.plugins.python.xunit.TestResult
-
public class TestResult extends Object
-
-
Constructor Summary
Constructors Constructor Description TestResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddTestCase(TestCase tc)intgetErrors()intgetExecutedTests()intgetFailures()intgetSkipped()intgetTests()intgetTime()
-
-
-
Method Detail
-
getErrors
public int getErrors()
-
getSkipped
public int getSkipped()
-
getTests
public int getTests()
-
getExecutedTests
public int getExecutedTests()
-
getTime
public int getTime()
-
getFailures
public int getFailures()
-
addTestCase
public void addTestCase(TestCase tc)
-
-