VinodAnandan / sonar-pitest

43 stars 30 forks source link

analysis error "Mutation in an unknown resource: ..." #11

Closed thomas-mc-work closed 6 years ago

thomas-mc-work commented 7 years ago

I'm getting the error message [WARNING] Mutation in an unknown resource: de/example/PacketConverter.java from this source file on my analysis. What does that mean and how can i debug that?

My pitest config in pom.xml is quite simple:

<build>
    <pluginManagement>
        <plugins>
            <plugin>
                <groupId>org.pitest</groupId>
                <artifactId>pitest-maven</artifactId>
                <version>1.1.9</version>
                <configuration>
                    <targetTests>
                        <!-- Ausschluss von IntegrationTests und SystemTests -->
                        <param>*Test</param>
                    </targetTests>
                    <outputFormats>
                        <outputFormat>XML</outputFormat>
                    </outputFormats>
                </configuration>
            </plugin>
        </plugins>
    </pluginManagement>