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

org.pitest.aggregate.MutationXml 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 MutationXml {

    @JacksonXmlProperty(isAttribute = true)
    boolean detected;

    @JacksonXmlProperty(isAttribute = true)
    String status;

    @JacksonXmlProperty(isAttribute = true)
    int numberOfTestsRun;

    @JacksonXmlProperty
    String sourceFile;

    @JacksonXmlProperty
    String mutatedClass;

    @JacksonXmlProperty
    String mutatedMethod;

    @JacksonXmlProperty
    String methodDescription;

    @JacksonXmlProperty
    int lineNumber;

    @JacksonXmlProperty
    String mutator;

    @JacksonXmlProperty
    List indexes;

    @JacksonXmlProperty
    String killingTest;

    @JacksonXmlProperty
    String description;

    @JacksonXmlProperty
    List blocks;

    // only ever generated by full matrix mode, which
    // is not properly supported
    @JacksonXmlProperty
    String succeedingTests;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy