RunPowerShellTest() public method

public RunPowerShellTest ( ) : Collection
return Collection
        protected virtual Collection <PSObject> RunPowerShellTest(params string[] scripts)
        {
            helper.SetupModules(commandMode,
                                new[] {
                "Common",
                GetType().Name
            }.Select(m => string.Format(modulePathFormat, m)).ToArray());

            return(helper.RunPowerShellTest(scripts));
        }