Skip to content

Commit

Permalink
test(#31): rename tests of plus and minus operations for AnyInt
Browse files Browse the repository at this point in the history
  • Loading branch information
LVMVRQUXL committed Mar 15, 2023
1 parent ad3f4b2 commit 32ba991
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commonTest/kotlin/kotools/types/number/AnyIntTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import kotlin.test.Test

class AnyIntTest {
@Test
fun int_plus_should_pass() {
fun int_plus_should_pass_with_an_AnyInt() {
val x: Int = Random.nextInt()
val y: AnyInt = NonZeroInt.random()
val result: Int = x + y
Expand All @@ -35,7 +35,7 @@ class AnyIntTest {
}

@Test
fun int_minus_should_pass() {
fun int_minus_should_pass_with_an_AnyInt() {
val x: Int = Random.nextInt()
val y: AnyInt = NonZeroInt.random()
val result: Int = x - y
Expand Down

0 comments on commit 32ba991

Please sign in to comment.