Class UnifiedTestResult

java.lang.Object
io.github.mov2day.unifiedtest.collector.UnifiedTestResult

public class UnifiedTestResult extends Object
Represents the result of a single test execution. Contains the test class name, test method name, and execution status.
  • Field Details

    • className

      public final String className
      The fully qualified name of the test class
    • testName

      public final String testName
      The name of the test method
    • status

      public final String status
      The test execution status (PASS, FAIL, SKIP)
  • Constructor Details

    • UnifiedTestResult

      public UnifiedTestResult(String className, String testName, String status)
      Creates a new test result with the specified details.
      Parameters:
      className - the fully qualified name of the test class
      testName - the name of the test method
      status - the test execution status