Skip to content

Latest commit

 

History

History
150 lines (113 loc) · 3.31 KB

Invoke-TestSuiteRunner.md

File metadata and controls

150 lines (113 loc) · 3.31 KB
external help file Module Name online version schema
PowerBolt-help.xml
PowerBolt
2.0.0

Invoke-TestSuiteRunner

SYNOPSIS

Creates a PowerShell background job that calls Invoke-Pester

SYNTAX

ByPath (Default)

Invoke-TestSuiteRunner [[-Path] <String>] [[-TestFolderPath] <String>] [[-Exclude] <String[]>]
 [[-Show] <OutputTypes[]>] [-PassThru] [<CommonParameters>]

ByName

Invoke-TestSuiteRunner [[-TestFolderPath] <String>] [[-Exclude] <String[]>] [[-Show] <OutputTypes[]>]
 [-PassThru] [-Name] <String> [<CommonParameters>]

DESCRIPTION

{{Fill in the Description}}

EXAMPLES

Example 1

PS C:\> Invoke-TestSuiteRunner -Name PowerSploit

Using the ByName validation parameter set and since no TestFolderPath value has been assigned, it will use the relative path of test

PARAMETERS

-Exclude

{{Fill Exclude Description}}

Type: String[]
Parameter Sets: (All)
Aliases:

Required: False
Position: 2
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Name

{{Fill Name Description}}

Type: String
Parameter Sets: ByName
Aliases:
Accepted values: CimCmdlets, Microsoft.PowerShell.Management, Microsoft.PowerShell.Utility, Pester, Plaster, platyPS, posh-git, PowerBolt, PSReadLine

Required: True
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-PassThru

{{Fill PassThru Description}}

Type: SwitchParameter
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Path

{{Fill Path Description}}

Type: String
Parameter Sets: ByPath
Aliases:

Required: False
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Show

{{Fill Show Description}}

Type: OutputTypes[]
Parameter Sets: (All)
Aliases:
Accepted values: None, Default, Passed, Failed, Pending, Skipped, Inconclusive, Describe, Context, Summary, Header, Fails, All

Required: False
Position: 3
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-TestFolderPath

{{Fill TestFolderPath Description}}

Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).

INPUTS

None

OUTPUTS

System.Object

NOTES

RELATED LINKS

Invoke-TestSuiteRunner.ps1

Invoke-TestSuiteRunner.Tests.ps1