Added tests for removing files from package.

This commit is contained in:
Evgeny Gerashchenko
2014-05-28 18:53:26 +04:00
parent 2a9721daf3
commit f62842343d
24 changed files with 155 additions and 0 deletions
@@ -0,0 +1,3 @@
package test
fun a() = "a"
@@ -0,0 +1,3 @@
package test
fun b() = "b"
@@ -0,0 +1,25 @@
Cleaning output files:
out/production/module/test/TestPackage-b-*.class
out/production/module/test/TestPackage.class
End of files
Compiling files:
End of files
Cleaning output files:
out/production/module/other/OtherPackage-other-*.class
out/production/module/other/OtherPackage.class
out/production/module/test/TestPackage-a-*.class
out/production/module/test/TestPackage.class
End of files
Compiling files:
src/a.kt
src/other.kt
End of files
Cleaning output files:
out/production/module/other/OtherPackage-other-*.class
out/production/module/other/OtherPackage.class
End of files
Compiling files:
src/other.kt
End of files
@@ -0,0 +1,3 @@
package other
fun imInOtherPackage() = ":)"
@@ -0,0 +1,3 @@
package other
fun imInOtherPackage() = ":))"