Skip to content

Instantly share code, notes, and snippets.

@mucahitkurt
Created July 16, 2020 13:45
Show Gist options
  • Save mucahitkurt/aead973548da8dbd91818ddf95c23457 to your computer and use it in GitHub Desktop.
Save mucahitkurt/aead973548da8dbd91818ddf95c23457 to your computer and use it in GitHub Desktop.
@Test
fun `Should be cancelled if the order is unpaid`() {
//Arrange
val order = Order(OrderSpecification())
order.makeUnpaid()
//Act
order.cancel()
//Assert
Assertions.assertTrue(order.isCancelled())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment