Skip to content

Commit

Permalink
update test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
Mansi-mParticle committed Aug 9, 2024
1 parent f6c5e99 commit 6934002
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -754,7 +754,8 @@ class KitConfigurationTest {
val jsn = """
{
"name": "John",
"age": "30"
"age": "30",
"18683141": 0
}
""".trimIndent()
val jsonConfiguration = JSONObject(jsn)
Expand All @@ -765,7 +766,7 @@ class KitConfigurationTest {
method.isAccessible = true

val result = method.invoke(kitConfiguration, jsonConfiguration) as SparseBooleanArray
Assert.assertEquals(0, result.size())
Assert.assertEquals(1, result.size())
}

@Test
Expand Down

0 comments on commit 6934002

Please sign in to comment.