public void Execute_should_save_the_project_user_options()
        {
            const string projectLocation = "projectLocation";

            command.ProjectLocation = projectLocation;

            command.Execute(NullProgressMonitor.CreateInstance());

            projectUserOptionsController.AssertWasCalled(uoc => uoc.SaveUserOptions(Arg.Is(projectLocation),
                                                                                    Arg <IProgressMonitor> .Is.Anything));
        }