New-Fixture
SYNOPSIS
This function generates two scripts, one that defines a function and another one that contains its tests.
SYNTAX
DESCRIPTION
This function generates two scripts, one that defines a function and another one that contains its tests. The files are by default placed in the current directory and are called and populated as such:
The script defining the function: .\Clean.ps1:
EXAMPLES
EXAMPLE 1
Creates the scripts in the current directory.
EXAMPLE 2
Creates the scripts in the C:\Projects\Cleaner directory.
EXAMPLE 3
Creates a new folder named Cleaner in the current directory and creates the scripts in it.
PARAMETERS
-Path
Defines path where the test and the function should be created, you can use full or relative path. If the parameter is not specified the scripts are created in the current directory.
-Name
Defines the name of the function and the name of the test to be created.
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.
INPUTS
OUTPUTS
NOTES
RELATED LINKS
https://pester.dev/docs/v4/commands/Describe
https://pester.dev/docs/v4/commands/Context
https://pester.dev/docs/v4/commands/It
https://pester.dev/docs/v4/commands/Should
EDIT THIS PAGE
This page was auto-generated using Pester's comment based help. To edit the content of this page, change the corresponding help in the pester/Pester repository. See our contribution guide for more information.