Add smoke test

This commit is contained in:
Alexey Tsvetkov
2019-02-06 23:14:38 +03:00
parent 690f6fdd32
commit 560a9d6ae6
@@ -807,4 +807,12 @@ class KotlinGradleIT : BaseGradleIT() {
}
}
}
@Test
fun testBuildReportSmokeTest() = with(Project("simpleProject")) {
build("assemble", "-Pkotlin.build.report.enable=true") {
assertSuccessful()
assertContains("Kotlin build report is written to")
}
}
}