it('Should call the new user service on add', function() {
    var userSettingsController = new UserSettingsController(UserService, mdToast);
    userSettingsController.addNewUser();
    $rootScope.$digest();
    expect(UserService.addNewUser).toHaveBeenCalled();