protected override void BeginProcessing()
 {
     CheckCmdletParameters();
     
     var command =
         new SeNewIeOptionsCommand(this);
     command.Execute();
 }
        protected override void BeginProcessing()
        {
            CheckCmdletParameters();

            var command =
                new SeNewIeOptionsCommand(this);

            command.Execute();
        }
Example #3
0
        public void InternetExplorer_new()
        {
            NewSeInternetExplorerOptionsCommand cmdlet =
                //new NewSeInternetExplorerOptionsCommandTestFixture();
                WebDriverFactory.Container.Resolve <NewSeInternetExplorerOptionsCommand>();
            //NewSeInternetExplorerOptionsCommand.UnitTestMode = true;
            SeNewIeOptionsCommand command =
                new SeNewIeOptionsCommand(cmdlet);

            command.Execute();
            //Assert.IsNotNull(SePSX.CommonCmdletBase.UnitTestOutput[0] as InternetExplorerOptions);
            Assert.IsNotNull(
                (InternetExplorerOptions)(object)PSTestLib.UnitTestOutput.LastOutput[0]);
        }