194195196197198199200
* Check that the passed optional is present. * * @return the matcher on the optional */ default org.hamcrest.Matcher<OptionalLong> optionalLongIsPresent() { return new OptionalLongPresentMatcher(is(true)); }
203204205206207208209
* Check that the passed optional is not present. * * @return the matcher on the optional */ default org.hamcrest.Matcher<OptionalLong> optionalLongIsNotPresent() { return new OptionalLongPresentMatcher(not(true)); }