Skip to content

Commit

Permalink
Makes some tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jesperancinha committed Dec 7, 2023
1 parent df558ba commit 632c47f
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package org.jesperancinha.ktd

import kotlin.test.Test

class AtmMachineTest {
val oldAtmMachine by lazy { OldAtmMachine() }

@Test
fun `should show compatibilities`() {
oldAtmMachine.cashIn(null)
oldAtmMachine.cashInJakartaAnnotation(null)
oldAtmMachine.cashInNotNullJakartaValidation(null)
oldAtmMachine.cashInNotNullEclipse(10)
oldAtmMachine.cashInNotNullJetBrains(10)
}
}

0 comments on commit 632c47f

Please sign in to comment.