We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ae6b76 commit e1c5acbCopy full SHA for e1c5acb
src/functionalTest/java/org.scoverage/ScalaSingleModuleTest.java
@@ -133,6 +133,15 @@ public void reportScoverageWithoutNormalCompilationAndWithExcludedClasses() thro
133
Assert.assertFalse(resolve(buildDir(), "classes/scala/scoverage/org/hello/World.class").exists());
134
}
135
136
+ @Test
137
+ public void reportScoverageUnder2_11() throws Exception {
138
+ run("clean", ScoveragePlugin.getREPORT_NAME(),
139
+ "-PscalaVersionMinor=11",
140
+ "-PscalaVersionBuild=8",
141
+ "-Pscoverage.scoverageScalaVersion=2_11");
142
+ assertReportFilesExist();
143
+ }
144
+
145
private void assertReportFilesExist() {
146
147
Assert.assertTrue(resolve(reportDir(), "index.html").exists());
0 commit comments