Eva
Eva
We have docs at https://willowtreeapps.github.io/assertk/, it would be useful to include more details: - markdown files for various module/packages - code samples for assertions
right now it's `containsAll(vararg Any?)` which it makes it too easy to accidentally pass in `listOf(foo)` instead of `*listOf(foo)`
If you reference a generated [viewbinding](https://developer.android.com/topic/libraries/view-binding) class in your component or `@Inject` constructor, it will cause an error. I suspect this is because ksp runs before the viewbinding code gen....
The kapt backend requires quite a lot to maintain and causes some api limitations (see https://github.com/evant/kotlin-inject/issues/113 & https://github.com/evant/kotlin-inject/issues/42). Unless there's a good reason to keep it around I think it...
You can write a class name with backticks like '\`My Weird Class`'. This works on ksp but not kapt. Is there a way to fix this?
### Question When writing a script I was surprised to discover that calling fetch on a url that 404's will not fail but will instead happily download the 404 page....
Saw your [announcement post](https://chaos.social/@ConnyDuck/111048234120831472) and wanted to give some feedback. Happy to break this out into multiple issues if that's more helpful. 1. Would recommend taking a `@Composable` content instead...
this gets it off an alpha version
jvm only, uses open4j's TestAbortedException under the hood so works on junit5 or other compatible testing framework (does not work on junit4) Fixes #432