Class TestStatistics


  • public class TestStatistics
    extends Object
    Class that keeps track of the tests executed, including failures encountered.
    • Constructor Detail

      • TestStatistics

        public TestStatistics​(boolean stopAtFirstError,
                              int verbosity)
    • Method Detail

      • getTestFileCount

        public int getTestFileCount()
      • getParseFailureCount

        public int getParseFailureCount()
      • incFilesNotParsed

        public void incFilesNotParsed()
      • incFiles

        public void incFiles()
        Increment the number of files processed.
      • incPassed

        public void incPassed()
        Increment the number of tests that have passed.
      • incIgnored

        public void incIgnored()
        Increment the number of tests that were ignored.
      • setPassedTestCount

        public void setPassedTestCount​(int n)
        Set the number of tests that have passed.
      • setFailedTestCount

        public void setFailedTestCount​(int n)
        Set the number of tests that have failed.
      • setIgnoredTestCount

        public void setIgnoredTestCount​(int n)
        Set the number of tests that were ignored.
      • add

        public void add​(TestStatistics stats)
        Add the other statistics to this.
      • getFailedTestCount

        public int getFailedTestCount()
        Returns:
        The number of failed tests.
      • getPassedTestCount

        public int getPassedTestCount()
        Returns:
        The number of passed tests.
      • getIgnoredTestCount

        public int getIgnoredTestCount()
        Returns:
        The number of ignored tests.
      • totalTests

        public int totalTests()
        Returns:
        Total number of tests that were considered.
      • printStatistics

        public void printStatistics​(PrintStream out)
        Print the statistics to the specified stream.