Platform (jvm, js, android): jvm
Extension (none, kotlin 1.3, jdk8): jdk8
expect(LocalDate.now().plusDays(1)).isAfterOrEquals(LocalDate.now())
Following the things you need to do (same same but different for ChronoLocalDateTime<out ChronoLocalDate> and ChronoZonedDateTime<out ChronoLocalDate>
domain-lib
ExpectImpl.builder.createDescriptive(... (see comparableAssertions.kt)IS_AFTER("is after") to DescriptionDateTimeLikeAssertion for en_GBIS_AFTER("ist nach oder zeitgleich") to DescriptionDateTimeLikeAssertion for de_CHdomain
isAfterOrEquals (see LocalDateAssertions as a guideline)api
isAfterOrEquals which expects a ChronoLocalDate (see localDateAssertions as guideline)@since 0.9.0 (adopt to next release version) to KDOC of val and funI'll work on this if you would like to take this issue over.I'll work on this
@vivek0203 do you need any help? I am going to un-assign you again as I haven't heard anything from you. Happily assign you again if you are still working on it or in case you intend to start now.
I'll work on this
@lukebiddell isBefore is almost implemented, have a look at https://github.com/robstoll/atrium/pull/264/files in case you are stuck.
After forking, cloning then importing the build.gradle file and building it using ./gr build (following the instructions), all files are throwing me errors. Have you seen this before?

It seems to build fine, though I did get this error on importing. Unsure whether it is related.
8:37 PM Duplicate content roots detected
Path [/home/.../atrium/bundles/cc-en_GB-robstoll/atrium-cc-en_GB-robstoll-jvm/src/test/kotlin] of module [atrium.atrium-cc-en_GB-robstoll-jvm.test] was removed from modules [atrium.atrium-cc-en_GB-robstoll-smoke-test.test]
Also 2 more paths were deduplicated. See idea log for details
Unfortunately a bug in intellij (the unnamed module part) and there is no way to suppress it via intellij. A workaround is to use jdk8 in the project settings. Then intellij does not apply this wrong check.
You can also ignore the warning about the duplicated paths. Unfortunately a feature intellij does not support. I should have mentioned that in the guide. Would you like to improve it?
Btw. also the Warning about LocalDate is a final type is a bug of intellij 馃槖
Ah I see, so mainly problems with Intellij. Thanks for your help.
You can also ignore the warning about the duplicated paths. Unfortunately a feature intellij does not support. I should have mentioned that in the guide. Would you like to improve it?
I'll give it a go 馃憤
@lukebiddell I have update the description, I realised that the functions should be a bit different (see #289 for details)
implemented with 569373b