Dale King
Dale King
When using the enum fall back and there is an unexpected value for the enum there are cases would it would be helpful to know the value that failed. For...
When encountering a null value for Safeable often you just want to map that to one of the existing enum values and one can do that in the accessing code...
In the French locale, format EEE for the short form of month names will output the same text for both June and July. In French those month names are "juin"...
Ran into an issue when trying to use callable reference functions(https://github.com/mockative/mockative#stubbing-using-callable-references) and I think it is an issue that the documentation could call out better to prevent others from running...
Since Kotlin is a functional language it is often more convenient to deal with a function type rather than an interface. Currently, mockative only supports mocking interfaces, but it seems...
The readme in the section on assertions talks about `expect thatExceptionIsThrownBy` when in your API it is actually `expect thatThrownBy`
**Describe the bug** When using the template to insert an `` tag it adds a `` which is ignored by obsidian and is visible in the document **To Reproduce** Steps...
Have a project with this to add retrolambda and Ben Manes' versions plugin (https://github.com/ben-manes/gradle-versions-plugin) plugins { id 'me.tatarka.retrolambda' version '3.6.0' apply false id 'com.github.ben-manes.versions' version '0.14.0' } The versions plugin...
When i created my own function mocking layer on top of Mockative 1.4.1 i created a simple way to block the return of a suspend function so that you can...
Was trying to upgrade some dependencies and wanted to make sure that I was not getting unexpected transitive dependency updates. What i wanted to do was: - run dependencyUpdates -...