google.com/p/mockito/">Mockito mocking framework.
Stubbing Examples:
1. Stub getFile and getDataForRead:
stubGetFile( repo, "/public/file.txt" ); stubGetData( repo, "/public/file.txt", "abcdefg" ); // do test after stubbing
Verification Examples:
1. Verify that createFile was called:
// do test before verifying verify( repo ).createFile( eq( publicFolderId ), argThat( isLikeFile( new RepositoryFile.Builder( fileName ).build() ) ), argThat( hasData( bytes, APPLICATION_OCTET_STREAM ) ), anyString() );
@author mlowery