NoteStoreClient personalClient = mock(NoteStoreClient.class);
List<LinkedNotebook> listLinkedNotebooks = new ArrayList<LinkedNotebook>();
stub(personalClient.listLinkedNotebooks()).toReturn(listLinkedNotebooks);
LinkedNotebook createdLinkedNotebook = new LinkedNotebook();
stub(personalClient.createLinkedNotebook(isA(LinkedNotebook.class)))
.toReturn(createdLinkedNotebook);
AuthenticationResult authenticationResult = new AuthenticationResult();