Sam

Results 461 comments of Sam

There's nothing stopping us making edgecases and sample suspend other than it being a large breaking change for everyone who has implemented custom arbs without using the builders.

It hasn't been started yet - as I focused on the compiler plugins for MPP support which I think is more important for 5.0 But now that that is done,...

So if we had an option, todo = true, then the test name could be prefixed with TODO: which would help with TDD style of development?

The difficulty there is that kotlin test is built on junit 4 and I don't think it has support for "expected to fail" tests. Just failed and completed. So we'd...

In theory we could move to JU5 tomorrow and in fact I think I'll upgrade immediately. Not sure if there's any kind of support for what you want though.

jUnit 5 allows us to specify a reason why a test was skipped. So we could add a message for each of the tests that are expected to fail. In...

You can run them, and then pretend they were skipped if they fail.

I'd like to add this to 3.2 in the form of pending tests. KotlinTest can track the number of pending tests then output this at the end of the build....

I think the idea is that you mark tests as pending because you haven't implemented the feature yet. Then once you inplement the feature the test starts to pass and...