Class TestCaseSummary


  • public class TestCaseSummary
    extends Object
    Class responsible for handling the data of unit testing summary.
    • Constructor Detail

      • TestCaseSummary

        public TestCaseSummary()
    • Method Detail

      • setTestSuiteName

        public void setTestSuiteName​(String testSuiteName)
        Set test suite name.
        Parameters:
        testSuiteName - name of the suite
      • getTestSuiteName

        public String getTestSuiteName()
        Get test suite name.
        Returns:
        testSuiteName
      • getTestCaseCount

        public int getTestCaseCount()
        Get test case count.
        Returns:
        testCaseCount
      • getPassTestCount

        public int getPassTestCount()
        Get passed test case count.
        Returns:
        passTestCount
      • getFailureTestCount

        public int getFailureTestCount()
        Get failed test case count.
        Returns:
        failureTestCount
      • getException

        public String getException()
        Get failed exception.
        Returns:
        exception
      • getDeploymentStatus

        public String getDeploymentStatus()
        Get configuration deployment status.
        Returns:
        deploymentStatus
      • getMediationStatus

        public String getMediationStatus()
        Get configuration mediation status.
        Returns:
        mediationStatus
      • getAssertionStatus

        public String getAssertionStatus()
        Get test cases assertion status.
        Returns:
        assertionStatus
      • setTestCaseCount

        public void setTestCaseCount​(int testCaseCount)
        Set test cases count.
        Parameters:
        testCaseCount - test case count
      • setPassTestCount

        public void setPassTestCount​(int passTestCount)
        Set passed test cases count.
        Parameters:
        passTestCount - passed test case count
      • setFailureTestCount

        public void setFailureTestCount​(int failureTestCount)
        Set failed test cases count.
        Parameters:
        failureTestCount - failed test case count
      • setException

        public void setException​(String exception)
        Set failed exception.
        Parameters:
        exception - failed exception
      • setDeploymentStatus

        public void setDeploymentStatus​(String deploymentStatus)
        Set configuration deployment status.
        Parameters:
        deploymentStatus - configuration deployment status
      • setMediationStatus

        public void setMediationStatus​(String mediationStatus)
        Set configuration mediation status.
        Parameters:
        mediationStatus - configuration mediation status
      • setAssertionStatus

        public void setAssertionStatus​(String assertionStatus)
        Set test cases assertion status.
        Parameters:
        assertionStatus - test cases assertion status