Skip to content

io microsphere logging test junit4 LoggingLevelsRule

github-actions[bot] edited this page May 30, 2026 · 9 revisions

LoggingLevelsRule

Type: Class | Module: microsphere-logging-test | Package: io.microsphere.logging.test.junit4 | Since: 1.0.0

Source: microsphere-logging-test/src/main/java/io/microsphere/logging/test/junit4/LoggingLevelsRule.java

Overview

The TestRule to iterate Logging levels

Declaration

public class LoggingLevelsRule implements TestRule

Author: Mercy

Version Information

  • Introduced in: 1.0.0
  • Current Project Version: 0.1.14-SNAPSHOT

Version Compatibility

This component is tested and compatible with the following Java versions:

Java Version Status
Java 8 ✅ Compatible
Java 11 ✅ Compatible
Java 17 ✅ Compatible
Java 21 ✅ Compatible
Java 25 ✅ Compatible

Examples

Method Examples

apply

LoggingLevelsRule rule = LoggingLevelsRule.levels("TRACE", "DEBUG", "INFO");
  // JUnit 4 applies the rule, iterating through each logging level

levels

@ClassRule
  public static final LoggingLevelsRule loggingLevelsRule = LoggingLevelsRule.levels("TRACE", "DEBUG", "INFO");

Usage

Maven Dependency

Add the following dependency to your pom.xml:

<dependency>
    <groupId>io.github.microsphere-projects</groupId>
    <artifactId>microsphere-logging-test</artifactId>
    <version>${microsphere-logging.version}</version>
</dependency>

Tip: Use the BOM (microsphere-logging-dependencies) for consistent version management. See the Getting Started guide.

Import

import io.microsphere.logging.test.junit4.LoggingLevelsRule;

API Reference

Public Methods

Method Description
apply {@inheritDoc}
levels Creates a new LoggingLevelsRule for the given logging levels.

Method Details

apply

public Statement apply(Statement base, Description description)

{@inheritDoc}

Example Usage

`LoggingLevelsRule rule = LoggingLevelsRule.levels("TRACE", "DEBUG", "INFO");
  // JUnit 4 applies the rule, iterating through each logging level
`

levels

public static LoggingLevelsRule levels(String... levels)

Creates a new LoggingLevelsRule for the given logging levels.

Example Usage

{@code

## See Also

- `LoggingLevelsStatement`
- `TestRule`

---

*This documentation was auto-generated from the source code of [microsphere-logging](https://github.com/microsphere-projects/microsphere-logging).*

Clone this wiki locally