Dale King
Dale King
Seems to work for iOS, but a couple of notes: - Your example does not work for KMP. You used BuildConfig.DEBUG for enabling. There is no BuildConfig for KMP. For...
I do understand that: > Even if Mokkery had mock(KClass), you would still need to list all the types to be mocked beforehand I am fine with that limitation and...
> > DebugDrawerInfo takes a String for the info parameter. Why isn't that just of Any? type and then you do the toString on that. That makes it easier to...
In assertJ they have something like this: ``` assertThat(5 + 19) .describedAs("The sum of 5 and 9") .isEqualTo(14) ``` I think there is a library I have used that instead...
My workaround for now: ``` // This is a workaround for this issue: https://github.com/ajoberstar/reckon/issues/204 // It can be removed after 1.0.0 is released fun forceMajorReleaseFromPreRelease(forceRelease: Boolean) = ScopeCalculator { inventory...
The way I see this working would be an optional parameter to `calcScopeFromCommitMessages` that specifies whether to allow commit messages to upgrade to 1.0.0
Thanks for changing this, though I have switched to https://github.com/jmongard/Git.SemVersioning.Gradle to get true conventional commits and changelog generation On Sat, Nov 23, 2024, 8:58 PM Andrew Oberstar ***@***.***> wrote: >...
I'm beginning to have the same question. There was a flurry of activity last year, but that did not result in any releases. Considering whether we should go back to...
I realize that one CAN pass that context down through the code and add that context to each and every leaf node assertion but that is extremely cumbersome. The ability...
I did discover there is a way to get at least one level of context. i never knew you could chain assertThat: ``` assertThat("This is outer context").all { assertThat(5).isEqualTo(6) }...