Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mucahitkurt/049687d438c08700380a185c1f722c1f to your computer and use it in GitHub Desktop.
Save mucahitkurt/049687d438c08700380a185c1f722c1f to your computer and use it in GitHub Desktop.
class OrderTest() {
//…
@Test
fun `Should be cancelled if the order is unpaid`() {
val order = Order(OrderSpecification())
//…make the order unpaid…
order.cancel()
Assertions.assertTrue(order.isCancelled())
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment