Platform (jvm, js, android): jvm
Extension (none, kotlin 1.3, jdk8): jdk8
expect(ZonedDateTime.now()).isAfter("2020-04-28T12:00Z")
//instead of
expect(ZonedDateTime.now()).isAfter(ZonedDateTime.of(2020,4,28,12,0,0,0, ZoneId.of("Z")))
Following the things you need to do:
atrium-logic:
And for ZoneDesignator:
* Z
* Z+hh
* Z+hh:mm
* Z-hh
* Z-hh:mm
Following a few examples how it looks combined:
- yyyy-mm-ddThh:mm:ssZ
- yyyy-mm-ddThh:mmZ+01
- yyyy-mm-ddZ-04:30
Right now we don't intend to support things like Europe/Zurich as ZoneDesignators (would be supported by jdk). So do a check upfront if in correct format and throw a DateTimeParseException if wrong and only then use ZonedDateTime.parse
Note that #481 deals also with parsing DateTime. You should reuse the logic from there.
api-fluent
describe("allowed shortcuts") with at least the following test cases:api-infix
I'll work on this if you would like to take this issue over.Hint
Have a look at the following PR for ChronoLocalDateTime:
https://github.com/robstoll/atrium/pull/556/files
You can assign me this one :-)
Sure 馃檪馃憤
I have sent you a collaborator invitation. Once accepted you can assign task yourself
Sure 馃檪馃憤
I have sent you a collaborator invitation. Once accepted you can assign task yourself
I didn't get the mail, because I haven't updated my Profile Email in a long time. If you don't mind, can you send the invitation again? Thank you 馃檪
@Valefant I have re-sent it yesterday, did you get it? Forget it, I just saw that you have accepted the invitation.
@Valefant I have re-sent it yesterday, did you get it? Forget it, I just saw that you have accepted the invitation.
I got it. Thank you @robstoll 馃檪
@Valefant do you need help with this one? No stress, I just want to offer my help
@robstoll I could takeover if @Valefant doesn't want to continue it. Or I'll gladly take some other entry-level issue if you have something available.
@khliwa feel free to start, in the worst case you both do the same and you can compare the two solutions
@robstoll Sry for replying so late. I would start working on it now.
@khliwa What's your status? :-)
This issue can be closed as the pull request was accepted