Example #1
0
 private void LaunchNewTestEditor(ConfigurationTestSuite testSuite)
 {
     if (testSuite != null)
     {
         var editor = new TestEditor(testSuite) { MdiParent = this };
         editor.Show();
     }
 }      
Example #2
0
        private void LaunchNewTestEditor(bool loadTemplates)
        {
            var editor = new TestEditor(loadTemplates)
            {
                MdiParent = this
            };

            editor.Show();
        }
Example #3
0
        private void LaunchNewTestEditor(ConfigurationTestSuite testSuite)
        {
            if (testSuite == null)
            {
                return;
            }

            var editor = new TestEditor(testSuite)
            {
                MdiParent = this
            };

            editor.Show();
        }
Example #4
0
        private void LaunchNewTestEditor(ConfigurationTestSuite testSuite, string fileName)
        {
            if (testSuite == null)
            {
                return;
            }

            testSuite.FileName = fileName;

            var editor = new TestEditor(testSuite)
            {
                MdiParent = this
            };

            editor.Show();
        }
 public void DefaultConstructorTest()
 {
     var target = new TestEditor();
     Assert.IsNotNull(target);
 }
 public void TestEditorConstructorTest()
 {
     var target = new TestEditor(false);
     Assert.IsNotNull(target);
 }
Example #7
0
 private void LaunchNewTestEditor(bool loadTemplates)
 {
     var editor = new TestEditor(loadTemplates) { MdiParent = this };
     editor.Show();
 }