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
module1/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>module1</artifactId>
<name>Module 1</name>
<properties>
<sonar.coverage.jacoco.xmlReportPaths>${basedir}/../${aggregate.report.dir}</sonar.coverage.jacoco.xmlReportPaths>
</properties>
</project>

View File

@@ -0,0 +1,17 @@
package com.acme.module1;
public class Module1 {
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,12 @@
package com.acme.module1;
import org.junit.Test;
public class Module1Test {
@Test
public void coveredByUnitTest() {
Module1 module1 = new Module1();
module1.coveredByUnitTest();
}
}