Struct jenkins_api::action::SurefireReport[][src]

pub struct SurefireReport {
    pub fail_count: u32,
    pub skip_count: u32,
    pub total_count: u32,
    pub url_name: String,
}

An action with a surefire test report

Fields

Number of tests failed

Number of tests skipped

Number of tests

URL to the report

Trait Implementations

impl Debug for SurefireReport
[src]

Formats the value using the given formatter. Read more

impl Class for SurefireReport
[src]

Should reply the _class provided by Jenkins for a type

impl Action for SurefireReport
[src]

Auto Trait Implementations