示例#1
0
 public TestModel(ITestEngine testEngine, CommandLineOptions options)
 {
     _testEngine = testEngine;
     Options     = options;
     RecentFiles = testEngine.Services.GetService <IRecentFiles>();
     Settings    = new Settings.SettingsModel(testEngine.Services.GetService <ISettings>());
 }
示例#2
0
 public TestModel(ITestEngine testEngine)
 {
     _testEngine = testEngine;
     RecentFiles = testEngine.Services.GetService <IRecentFiles>();
     Settings    = new Settings.SettingsModel(testEngine.Services.GetService <ISettings>());
 }
示例#3
0
 public GuiSettingsPage(SettingsModel settings)
     : base("Gui.General", settings)
 {
     InitializeComponent();
 }