Hey guys! I’m trying to figure out where `executio...
# kotlintest
m
Hey guys! I’m trying to figure out where
executionError
comes from in my test reports. I have pretty simple test using `ExpectSpec`:
Copy code
class MyTest : ExpectSpec({
  context("my context") {
    expect("my expectation") {
      2 + 2 shouldBe 5
    }
  }
})
When running it through Gradle:
Copy code
./gradlew test --tests mypackage.MyTest
i get:
Copy code
> Task :api_tests:test FAILED

mypackage.MyTest > Expect: my expectation FAILED
    org.opentest4j.AssertionFailedError at MyTest.kt:9

mypackage.MyTest > mypackage.MyTest > executionError FAILED
    org.opentest4j.AssertionFailedError at MyTest.kt:9