|
ReleaseNotes13
Release notes 1.3Backward incompatible changesAwaitility.callTo has been renamed to Awaitility.to which should be used together with the new untilCall method. I.e. instead of writing: await().until( callTo(myObject).myMethod(), equalTo(2) ); // Syntax up until Awaitility 1.2.1 you write await().untilCall( to(myObject).myMethod(), equalTo(2) ); // Syntax Awaitility 1.3 Other notable changes
await().until(fieldIn(myObject).ofType(int.class), equalTo(2)); await until { myObject.myMethod == 2 }Minor changesRefer to the change log. |
► Sign in to add a comment