private void LaunchNewTestEditor(ConfigurationTestSuite testSuite) { if (testSuite != null) { var editor = new TestEditor(testSuite) { MdiParent = this }; editor.Show(); } }
private void LaunchNewTestEditor(bool loadTemplates) { var editor = new TestEditor(loadTemplates) { MdiParent = this }; editor.Show(); }
private void LaunchNewTestEditor(ConfigurationTestSuite testSuite) { if (testSuite == null) { return; } var editor = new TestEditor(testSuite) { MdiParent = this }; editor.Show(); }
private void LaunchNewTestEditor(ConfigurationTestSuite testSuite, string fileName) { if (testSuite == null) { return; } testSuite.FileName = fileName; var editor = new TestEditor(testSuite) { MdiParent = this }; editor.Show(); }