This commit is contained in:
Mali Bayhan
2021-10-26 21:52:45 -07:00
parent 96c28dd7b1
commit 84a95837ee
68 changed files with 354 additions and 2725 deletions

21
module2/pom.xml Normal file
View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonarqube</groupId>
<artifactId>sonarscanner-maven-aggregate</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<artifactId>module2</artifactId>
<name>Module 2</name>
<properties>
<sonar.coverage.jacoco.xmlReportPaths>${basedir}/../${aggregate.report.dir}</sonar.coverage.jacoco.xmlReportPaths>
</properties>
</project>

View File

@@ -0,0 +1,16 @@
package com.acme.module2;
public class Module2 {
public void coveredByUnitTest() {
System.out.println("This method is covered by unit test");
}
public void coveredByIntegrationTest() {
System.out.println("This method is covered by integration test");
}
public void uncovered() {
System.out.println("This method is not covered");
}
}

View File

@@ -0,0 +1,11 @@
package com.acme.module2;
import org.junit.Test;
public class Module2Test {
@Test
public void coveredByUnitTest() {
new Module2().coveredByUnitTest();
}
}