Index

A B C D E F G H I J M O P R S T U V 
All Classes and Interfaces|All Packages

A

addResult(UnifiedTestResult) - Method in class io.github.mov2day.unifiedtest.collector.UnifiedTestResultCollector
Adds a test result to the collection.
afterSuite(TestDescriptor, TestResult) - Method in class io.github.mov2day.unifiedtest.collector.UnifiedTestResultCollector
 
afterSuite(TestDescriptor, TestResult) - Method in class io.github.mov2day.unifiedtest.reporting.GradleTestListenerWrapper
 
afterSuite(TestDescriptor, TestResult) - Method in class io.github.mov2day.unifiedtest.reporting.PrettyConsoleTestListener
 
afterTest(TestDescriptor, TestResult) - Method in class io.github.mov2day.unifiedtest.collector.UnifiedTestResultCollector
 
afterTest(TestDescriptor, TestResult) - Method in class io.github.mov2day.unifiedtest.reporting.GradleTestListenerWrapper
 
afterTest(TestDescriptor, TestResult) - Method in class io.github.mov2day.unifiedtest.reporting.PrettyConsoleTestListener
 
afterTestExecution(Project, Test) - Method in interface io.github.mov2day.unifiedtest.extension.UnifiedTestExtension
Called after test execution completes.
afterTestExecution(Project, Test) - Method in interface io.github.mov2day.unifiedtest.UnifiedTestExtension
Called after test execution completes.
apply(Project) - Method in class io.github.mov2day.unifiedtest.UnifiedTestAgentPlugin
 

B

beforeSuite(TestDescriptor) - Method in class io.github.mov2day.unifiedtest.collector.UnifiedTestResultCollector
 
beforeSuite(TestDescriptor) - Method in class io.github.mov2day.unifiedtest.reporting.GradleTestListenerWrapper
 
beforeSuite(TestDescriptor) - Method in class io.github.mov2day.unifiedtest.reporting.PrettyConsoleTestListener
 
beforeTest(TestDescriptor) - Method in class io.github.mov2day.unifiedtest.collector.UnifiedTestResultCollector
 
beforeTest(TestDescriptor) - Method in class io.github.mov2day.unifiedtest.reporting.GradleTestListenerWrapper
 
beforeTest(TestDescriptor) - Method in class io.github.mov2day.unifiedtest.reporting.PrettyConsoleTestListener
 

C

className - Variable in class io.github.mov2day.unifiedtest.collector.UnifiedTestResult
The fully qualified name of the test class
ConsoleReporter - Class in io.github.mov2day.unifiedtest.reporting
ConsoleReporter provides formatted console output for test results and summaries.
ConsoleReporter(String) - Constructor for class io.github.mov2day.unifiedtest.reporting.ConsoleReporter
Constructs a ConsoleReporter with the specified theme.
ConsoleReporter.Theme - Enum Class in io.github.mov2day.unifiedtest.reporting
Theme options for console output formatting.

D

detect(Project) - Static method in class io.github.mov2day.unifiedtest.framework.FrameworkDetector
Detects test frameworks present in the project's dependencies.
duration - Variable in class io.github.mov2day.unifiedtest.collector.UnifiedTestResult
The test execution duration in milliseconds

E

executionFinished(TestIdentifier, TestExecutionResult) - Method in class io.github.mov2day.unifiedtest.reporting.UnifiedJUnit5Listener
 
executionSkipped(TestIdentifier, String) - Method in class io.github.mov2day.unifiedtest.reporting.UnifiedJUnit5Listener
 
executionStarted(TestIdentifier) - Method in class io.github.mov2day.unifiedtest.reporting.UnifiedJUnit5Listener
 
export(Project, Test, String) - Static method in class io.github.mov2day.unifiedtest.reporting.OpenTelemetryExporter
Exports test results to an OpenTelemetry endpoint.
ExtensionInvoker - Class in io.github.mov2day.unifiedtest.extension
Handles the invocation of UnifiedTest extensions.
ExtensionInvoker() - Constructor for class io.github.mov2day.unifiedtest.extension.ExtensionInvoker
 

F

failureMessage - Variable in class io.github.mov2day.unifiedtest.collector.UnifiedTestResult
The failure message if the test failed, null otherwise
formatSummary(int, int, int, int) - Method in class io.github.mov2day.unifiedtest.reporting.ConsoleReporter
Formats the summary string.
FrameworkDetector - Class in io.github.mov2day.unifiedtest.framework
Utility class for detecting test frameworks in a Gradle project.
FrameworkDetector() - Constructor for class io.github.mov2day.unifiedtest.framework.FrameworkDetector
 

G

generate(Project, Test, UnifiedTestResultCollector) - Static method in class io.github.mov2day.unifiedtest.reporting.HtmlReportGenerator
 
generate(Project, Test, UnifiedTestResultCollector) - Static method in class io.github.mov2day.unifiedtest.reporting.JsonReportGenerator
 
getCollector() - Method in class io.github.mov2day.unifiedtest.reporting.GradleTestListenerWrapper
Gets the test result collector.
getFramework() - Method in class io.github.mov2day.unifiedtest.UnifiedTestAgentPlugin.UnifiedTestExtensionConfig
Gets the configured test framework.
getHtmlEnabled() - Method in class io.github.mov2day.unifiedtest.UnifiedTestAgentPlugin.UnifiedTestExtensionConfig
Gets whether HTML report generation is enabled.
getJsonEnabled() - Method in class io.github.mov2day.unifiedtest.UnifiedTestAgentPlugin.UnifiedTestExtensionConfig
Gets whether JSON report generation is enabled.
getName() - Method in class io.github.mov2day.unifiedtest.framework.JUnit4Adapter
 
getName() - Method in class io.github.mov2day.unifiedtest.framework.JUnit5Adapter
 
getName() - Method in interface io.github.mov2day.unifiedtest.framework.TestFrameworkAdapter
Gets the name of the test framework this adapter supports.
getName() - Method in class io.github.mov2day.unifiedtest.framework.TestNGAdapter
 
getReporter() - Method in class io.github.mov2day.unifiedtest.reporting.GradleTestListenerWrapper
Gets the console reporter.
getResults() - Method in class io.github.mov2day.unifiedtest.collector.UnifiedTestResultCollector
Gets all collected test results.
getTelemetryEnabled() - Method in class io.github.mov2day.unifiedtest.UnifiedTestAgentPlugin.UnifiedTestExtensionConfig
Gets whether OpenTelemetry export is enabled.
getTelemetryEndpoint() - Method in class io.github.mov2day.unifiedtest.UnifiedTestAgentPlugin.UnifiedTestExtensionConfig
Gets the configured OpenTelemetry endpoint.
getTheme() - Method in class io.github.mov2day.unifiedtest.UnifiedTestAgentPlugin.UnifiedTestExtensionConfig
Gets the configured theme for console output.
GradleTestListenerWrapper - Class in io.github.mov2day.unifiedtest.reporting
Wrapper class that implements Gradle's TestListener interface and delegates to framework-specific listeners.
GradleTestListenerWrapper(UnifiedTestResultCollector, ConsoleReporter) - Constructor for class io.github.mov2day.unifiedtest.reporting.GradleTestListenerWrapper
Creates a new wrapper with the specified collector and reporter.

H

hasResult(String, String) - Method in class io.github.mov2day.unifiedtest.collector.UnifiedTestResultCollector
Checks if a result exists for the specified test.
HtmlReportGenerator - Class in io.github.mov2day.unifiedtest.reporting
Generates HTML test reports from UnifiedTest results.
HtmlReportGenerator() - Constructor for class io.github.mov2day.unifiedtest.reporting.HtmlReportGenerator
 

I

invoke(Project, Test) - Static method in class io.github.mov2day.unifiedtest.extension.ExtensionInvoker
Invokes afterTestExecution for all UnifiedTestExtension implementations.
io.github.mov2day.unifiedtest - package io.github.mov2day.unifiedtest
 
io.github.mov2day.unifiedtest.collector - package io.github.mov2day.unifiedtest.collector
 
io.github.mov2day.unifiedtest.extension - package io.github.mov2day.unifiedtest.extension
 
io.github.mov2day.unifiedtest.framework - package io.github.mov2day.unifiedtest.framework
 
io.github.mov2day.unifiedtest.reporting - package io.github.mov2day.unifiedtest.reporting
 
isApplicable(Project) - Method in class io.github.mov2day.unifiedtest.framework.JUnit4Adapter
 
isApplicable(Project) - Method in class io.github.mov2day.unifiedtest.framework.JUnit5Adapter
 
isApplicable(Project) - Method in interface io.github.mov2day.unifiedtest.framework.TestFrameworkAdapter
Checks if this adapter is applicable for the given project.
isApplicable(Project) - Method in class io.github.mov2day.unifiedtest.framework.TestNGAdapter
 

J

JsonReportGenerator - Class in io.github.mov2day.unifiedtest.reporting
Generates JSON test reports from UnifiedTest results.
JsonReportGenerator() - Constructor for class io.github.mov2day.unifiedtest.reporting.JsonReportGenerator
 
JUnit4Adapter - Class in io.github.mov2day.unifiedtest.framework
JUnit 4 framework adapter for UnifiedTest.
JUnit4Adapter() - Constructor for class io.github.mov2day.unifiedtest.framework.JUnit4Adapter
 
JUnit5Adapter - Class in io.github.mov2day.unifiedtest.framework
JUnit 5 framework adapter for UnifiedTest.
JUnit5Adapter() - Constructor for class io.github.mov2day.unifiedtest.framework.JUnit5Adapter
 

M

MINIMAL - Enum constant in enum class io.github.mov2day.unifiedtest.reporting.ConsoleReporter.Theme
Minimal theme with essential formatting only
MOCHA - Enum constant in enum class io.github.mov2day.unifiedtest.reporting.ConsoleReporter.Theme
Mocha-inspired theme with rich color scheme

O

onFinish(ITestContext) - Method in class io.github.mov2day.unifiedtest.reporting.UnifiedTestNGListener
 
onStart(ITestContext) - Method in class io.github.mov2day.unifiedtest.reporting.UnifiedTestNGListener
 
onTestFailedButWithinSuccessPercentage(ITestResult) - Method in class io.github.mov2day.unifiedtest.reporting.UnifiedTestNGListener
 
onTestFailure(ITestResult) - Method in class io.github.mov2day.unifiedtest.reporting.UnifiedTestNGListener
 
onTestSkipped(ITestResult) - Method in class io.github.mov2day.unifiedtest.reporting.UnifiedTestNGListener
 
onTestStart(ITestResult) - Method in class io.github.mov2day.unifiedtest.reporting.UnifiedTestNGListener
 
onTestSuccess(ITestResult) - Method in class io.github.mov2day.unifiedtest.reporting.UnifiedTestNGListener
 
OpenTelemetryExporter - Class in io.github.mov2day.unifiedtest.reporting
Exports test results to OpenTelemetry for observability and monitoring.
OpenTelemetryExporter() - Constructor for class io.github.mov2day.unifiedtest.reporting.OpenTelemetryExporter
 

P

PrettyConsoleTestListener - Class in io.github.mov2day.unifiedtest.reporting
Provides pretty-printed console output for test execution events.
PrettyConsoleTestListener(Project, String, UnifiedTestResultCollector) - Constructor for class io.github.mov2day.unifiedtest.reporting.PrettyConsoleTestListener
Creates a new PrettyConsoleTestListener with the specified theme.

R

registerListeners(Project, Test, UnifiedTestResultCollector, ConsoleReporter) - Method in class io.github.mov2day.unifiedtest.framework.JUnit4Adapter
 
registerListeners(Project, Test, UnifiedTestResultCollector, ConsoleReporter) - Method in class io.github.mov2day.unifiedtest.framework.JUnit5Adapter
 
registerListeners(Project, Test, UnifiedTestResultCollector, ConsoleReporter) - Method in interface io.github.mov2day.unifiedtest.framework.TestFrameworkAdapter
Registers test listeners for the framework with the given project and test task.
registerListeners(Project, Test, UnifiedTestResultCollector, ConsoleReporter) - Method in class io.github.mov2day.unifiedtest.framework.TestNGAdapter
 

S

setCollectorAndReporter(UnifiedTestResultCollector, ConsoleReporter) - Static method in class io.github.mov2day.unifiedtest.reporting.UnifiedJUnit4Listener
Sets the collector and reporter for the listener.
setCollectorAndReporter(UnifiedTestResultCollector, ConsoleReporter) - Static method in class io.github.mov2day.unifiedtest.reporting.UnifiedJUnit5Listener
Sets the collector and reporter for the listener.
setCollectorAndReporter(UnifiedTestResultCollector, ConsoleReporter) - Static method in class io.github.mov2day.unifiedtest.reporting.UnifiedTestNGListener
Sets the collector and reporter for the listener.
stackTrace - Variable in class io.github.mov2day.unifiedtest.collector.UnifiedTestResult
The stack trace if the test failed, null otherwise
STANDARD - Enum constant in enum class io.github.mov2day.unifiedtest.reporting.ConsoleReporter.Theme
Standard console output theme with basic formatting
status - Variable in class io.github.mov2day.unifiedtest.collector.UnifiedTestResult
The test execution status (PASS, FAIL, SKIP)
summary(int, int, int, int) - Method in class io.github.mov2day.unifiedtest.reporting.ConsoleReporter
Prints a summary of test results.

T

testAssumptionFailure(Failure) - Method in class io.github.mov2day.unifiedtest.reporting.UnifiedJUnit4Listener
 
testFailure(Failure) - Method in class io.github.mov2day.unifiedtest.reporting.UnifiedJUnit4Listener
 
testFinished(Description) - Method in class io.github.mov2day.unifiedtest.reporting.UnifiedJUnit4Listener
 
TestFrameworkAdapter - Interface in io.github.mov2day.unifiedtest.framework
Interface for adapting different test frameworks to work with UnifiedTest.
testIgnored(Description) - Method in class io.github.mov2day.unifiedtest.reporting.UnifiedJUnit4Listener
 
testName - Variable in class io.github.mov2day.unifiedtest.collector.UnifiedTestResult
The name of the test method
TestNGAdapter - Class in io.github.mov2day.unifiedtest.framework
TestNG framework adapter for UnifiedTest.
TestNGAdapter() - Constructor for class io.github.mov2day.unifiedtest.framework.TestNGAdapter
 
testPlanExecutionFinished(TestPlan) - Method in class io.github.mov2day.unifiedtest.reporting.UnifiedJUnit5Listener
 
testPlanExecutionStarted(TestPlan) - Method in class io.github.mov2day.unifiedtest.reporting.UnifiedJUnit5Listener
 
testResult(String, String) - Method in class io.github.mov2day.unifiedtest.reporting.ConsoleReporter
Prints a test result message.
testRunFinished(Result) - Method in class io.github.mov2day.unifiedtest.reporting.UnifiedJUnit4Listener
 
testRunning(String) - Method in class io.github.mov2day.unifiedtest.reporting.ConsoleReporter
Prints a running test message.
testStarted(Description) - Method in class io.github.mov2day.unifiedtest.reporting.UnifiedJUnit4Listener
 

U

UnifiedJUnit4Listener - Class in io.github.mov2day.unifiedtest.reporting
JUnit 4 test listener that integrates with UnifiedTest reporting.
UnifiedJUnit4Listener() - Constructor for class io.github.mov2day.unifiedtest.reporting.UnifiedJUnit4Listener
 
UnifiedJUnit5Listener - Class in io.github.mov2day.unifiedtest.reporting
JUnit 5 test listener that integrates with UnifiedTest reporting.
UnifiedJUnit5Listener() - Constructor for class io.github.mov2day.unifiedtest.reporting.UnifiedJUnit5Listener
 
UnifiedTestAgentPlugin - Class in io.github.mov2day.unifiedtest
Main plugin class for UnifiedTest that provides test execution monitoring and reporting.
UnifiedTestAgentPlugin() - Constructor for class io.github.mov2day.unifiedtest.UnifiedTestAgentPlugin
 
UnifiedTestAgentPlugin.UnifiedTestExtensionConfig - Class in io.github.mov2day.unifiedtest
Configuration class for UnifiedTest plugin extension.
UnifiedTestExtension - Interface in io.github.mov2day.unifiedtest.extension
Interface for UnifiedTest extensions that can be invoked during test execution lifecycle.
UnifiedTestExtension - Interface in io.github.mov2day.unifiedtest
Interface for UnifiedTest extensions that can be invoked after test execution.
UnifiedTestExtensionConfig(ObjectFactory) - Constructor for class io.github.mov2day.unifiedtest.UnifiedTestAgentPlugin.UnifiedTestExtensionConfig
Creates a new configuration instance.
UnifiedTestNGListener - Class in io.github.mov2day.unifiedtest.reporting
TestNG test listener that integrates with UnifiedTest reporting.
UnifiedTestNGListener() - Constructor for class io.github.mov2day.unifiedtest.reporting.UnifiedTestNGListener
 
UnifiedTestResult - Class in io.github.mov2day.unifiedtest.collector
Represents the result of a single test execution.
UnifiedTestResult(String, String, String) - Constructor for class io.github.mov2day.unifiedtest.collector.UnifiedTestResult
Creates a new test result without failure details or duration.
UnifiedTestResult(String, String, String, long) - Constructor for class io.github.mov2day.unifiedtest.collector.UnifiedTestResult
Creates a new test result with duration but no failure details.
UnifiedTestResult(String, String, String, String, String) - Constructor for class io.github.mov2day.unifiedtest.collector.UnifiedTestResult
Creates a new test result with failure details but no duration.
UnifiedTestResult(String, String, String, String, String, long) - Constructor for class io.github.mov2day.unifiedtest.collector.UnifiedTestResult
Creates a new test result with the specified details.
UnifiedTestResultCollector - Class in io.github.mov2day.unifiedtest.collector
Collects and stores test results from various test frameworks.
UnifiedTestResultCollector() - Constructor for class io.github.mov2day.unifiedtest.collector.UnifiedTestResultCollector
 

V

valueOf(String) - Static method in enum class io.github.mov2day.unifiedtest.reporting.ConsoleReporter.Theme
Returns the enum constant of this class with the specified name.
values() - Static method in enum class io.github.mov2day.unifiedtest.reporting.ConsoleReporter.Theme
Returns an array containing the constants of this enum class, in the order they are declared.
A B C D E F G H I J M O P R S T U V 
All Classes and Interfaces|All Packages