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

            var command =
                new SeNewFirefoxProfileCommand(this);

            command.Execute();
        }
        public void Firefox_new_bare()
        {
            NewSeFirefoxProfileCommand cmdlet =
                //new NewSeFirefoxProfileCommandTestFixture();
                WebDriverFactory.Container.Resolve <NewSeFirefoxProfileCommand>();
            //NewSeFirefoxProfileCommand.UnitTestMode = true;
            SeNewFirefoxProfileCommand command =
                new SeNewFirefoxProfileCommand(cmdlet);

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