import io.kotest.core.spec.style.BehaviorSpec
class SomeOtherSpec : BehaviorSpec({
  Given("some preconditions") {
    When("action is executed") {
      Then("expect result") {}
    }
    When("other action is executed") {
      Then("expect other result") {}
    }
  }
})