Tutorial by Examples

Imagine you're testing code that makes a call to this interface, and you want to make sure your retry code is working. public interface DataStore { void save(Data data) throws IOException; } You could do something like this: public void saveChanges_Retries_WhenDataStoreCallFails() { ...

Page 1 of 1