logo

Struct cucumber::writer::JUnit[][src]

pub struct JUnit<W, Out: Write> { /* fields omitted */ }
Expand description

JUnit XML report Writer implementation outputting XML to an io::Write implementor.

Ordering

This Writer isn’t Normalized by itself, so should be wrapped into a writer::Normalize, otherwise will panic in runtime as won’t be able to form correct JUnit testsuites.

Implementations

Creates a new Normalized JUnit Writer outputting XML report into the given output.

Creates a new non-Normalized JUnit Writer outputting XML report into the given output, and suitable for feeding into tee().

Creates a new raw and non-Normalized JUnit Writer outputting XML report into the given output.

Use it only if you know what you’re doing. Otherwise, consider using JUnit::new() which creates an already Normalized version of JUnit Writer.

Applies the given Cli options to this JUnit Writer.

Trait Implementations

Formats the value using the given formatter. Read more

CLI options of this Writer. In case no options should be introduced, just use cli::Empty. Read more

Handles the given Cucumber event. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Asserts this Writer being Normalized. Read more

Wraps this Writer into a Normalized version. Read more

Wraps this Writer to print a summary at the end of an output. Read more

Wraps this Writer to fail on Skipped Steps if their Scenario isn’t marked with @allow.skipped tag. Read more

Wraps this Writer to fail on Skipped Steps if the given with predicate returns true. Read more

Wraps this Writer to re-output Skipped Steps at the end of an output. Read more

Wraps this Writer to re-output Failed Steps or Parser errors at the end of an output. Read more

Wraps this Writer to re-output filtered events at the end of an output. Read more

Attaches the provided other Writer to the current one for passing events to both of them simultaneously. Read more

Wraps this Writer into a discard::Arbitrary one, providing a no-op ArbitraryWriter implementation. Read more

Wraps this Writer into a discard::Arbitrary one, providing a no-op FailureWriter implementation returning only 0. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.