add tests for comparison of package members
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
package test
|
||||
|
||||
public fun unchangedFun() {}
|
||||
|
||||
private fun addedFun(): Int = 10
|
||||
|
||||
private val addedVal: String = "A"
|
||||
|
||||
private val changedVal: String = ""
|
||||
|
||||
private fun changedFun(arg: String) {}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
package test
|
||||
|
||||
public fun unchangedFun() {}
|
||||
|
||||
private fun removedFun(): Int = 10
|
||||
|
||||
private val removedVal: String = "A"
|
||||
|
||||
private val changedVal: Int = 20
|
||||
|
||||
private fun changedFun(arg: Int) {}
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
changes in test/MainKt: NONE
|
||||
changes in test/TestPackage: NONE
|
||||
Reference in New Issue
Block a user