Skip to content

Commit

Permalink
Rearrange the methods
Browse files Browse the repository at this point in the history
  • Loading branch information
Mansi-mParticle committed Feb 12, 2025
1 parent 595c91f commit 0d1a635
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions src/test/kotlin/com/mparticle/kits/ButtonKitTests.kt
Original file line number Diff line number Diff line change
Expand Up @@ -315,16 +315,17 @@ class ButtonKitTests {
override fun getLaunchAction(): String? = null
override fun getKitListener(): KitListener {
return object : KitListener {
override fun kitConfigReceived(kitId: Int, configuration: String?) {}

override fun kitExcluded(kitId: Int, reason: String?) {}

override fun kitFound(i: Int) {}
override fun kitConfigReceived(i: Int, s: String?) {}
override fun kitExcluded(i: Int, s: String?) {}
override fun kitStarted(i: Int) {}
override fun onKitApiCalled(kitId: Int, used: Boolean?, vararg objects: Any?) {
}

override fun onKitApiCalled(methodName: String?, kitId: Int, used: Boolean?, vararg objects: Any?) {
override fun onKitApiCalled(i: Int, aBoolean: Boolean?, vararg objects: Any?) {}
override fun onKitApiCalled(
s: String?,
i: Int,
aBoolean: Boolean?,
vararg objects: Any?
) {
}
}
}
Expand Down

0 comments on commit 0d1a635

Please sign in to comment.