it("should set/unset changes to a collection's title", () => {
    expect(_sampleCollection.getTitle()).toEqual('a title');
    collectionUpdateService.setCollectionTitle(_sampleCollection, 'new title');
    expect(_sampleCollection.getTitle()).toEqual('new title');