@robstoll Hi! I was just making tests w/ Spek using a function to generate `on`/`it` w/ fixtures but came across one situation where in certain cases the value must not be null and certain yes...
```
fun testGen(a: Int?, b: Int?) {
on("some test w/ $a") {
it("should be $b") {
assert(a).isNotNull {
toBe(b) /// - wrong since nullable
}
}
}
testGen(1,2)
testGen(2,null)