All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.pitest.aggregate.CoverageXml Maven / Gradle / Ivy

There is a newer version: 1.17.3
Show newest version
package org.pitest.aggregate;

import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;

import java.util.List;

public class CoverageXml {
    @JacksonXmlProperty(isAttribute = true)
    String classname;
    @JacksonXmlProperty(isAttribute = true)
    String method;
    @JacksonXmlProperty(isAttribute = true)
    int number;

    @JacksonXmlProperty(isAttribute = true)
    int firstInstruction;

    @JacksonXmlProperty(isAttribute = true)
    int lastInstruction;

    @JacksonXmlProperty
    List tests;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy