How to deal with (testing) internal assumptions?
Let's say you have a method like (Java): private @Nonnull Optional<Thing> findByIdentifier(Integer thingIdentifier) { // More logic here return Optional.of(new Thing()); } There are two assumptions: thingIdentifier is a valid number (not nul...
Dec 23, 2018SCC