代码之家  ›  专栏  ›  技术社区  ›  Charlie Gevious

MSpec&Resharper测试运行程序问题

  •  1
  • Charlie Gevious  · 技术社区  · 14 年前

        public class when_I_click_create_investment_manager : with_main_window
        {
            Establish I_am_viewing_the_main_page = () => mainWindowViewModel = new MainWindowViewModel();
            Because the_user_clicks_create = () => mainWindowViewModel.CreateInvestmentManager.Execute(null);
            It should_show_the_investment_manager_details_screen = () => mainWindowViewModel.CurrentWorkspace.ShouldBeOfType(typeof(IInvestmentManagerDetailsViewModel));
            It should_set_the_edit_screen_to_create_mode = () => mainWindowViewModel.CurrentWorkspace.Mode.ShouldEqual(WorkspaceMode.New);  
        }
    
        public class with_main_window
        {
            protected static IMainWindowViewModel mainWindowViewModel;
        }
    

    alt text

    1 回复  |  直到 5 年前
        1
  •  3
  •   Alexander Groß    14 年前

    您的问题很可能是由项目目录中的MSpec plugin+程序集的过期版本引起的。请确保您有最新版本的 MSpec from CodeBetter CI 在ReSharper插件目录和您的项目中。