stub(noteStoreClient.createNote(isA(Note.class))).toReturn(createdNote);
NotebookRestrictions restrictions = new NotebookRestrictions();
restrictions.setNoCreateNotes(false);
Notebook createdNotebook = new Notebook();
createdNotebook.setRestrictions(restrictions);
stub(noteStoreClient.createNotebook(isA(Notebook.class))).toReturn(
createdNotebook);
stub(noteStoreClient.getNotebook(anyString())).toReturn(createdNotebook);
SharedNotebook sharedNotebook = new SharedNotebook();