Skip to content

Commit af971de

Browse files
committed
chore: improve Amount tests
1 parent 016bcf6 commit af971de

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

android/src/test/java/com/adyenreactnativesdk/configuration/RootConfigurationParserTest.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ class RootConfigurationParserTest {
7272

7373
// THEN
7474
assertNotNull(sut.amount)
75+
assertEquals(sut.amount?.value, 123456L)
7576
}
7677

7778
@Test
@@ -87,6 +88,7 @@ class RootConfigurationParserTest {
8788

8889
// THEN
8990
assertNotNull(sut.amount)
91+
assertEquals(sut.amount?.value, -1L)
9092
}
9193

9294
@Test

0 commit comments

Comments
 (0)