Tutorial by Examples

To get started with unit testing PowerShell code using the Pester-module, you need to be familiar with three keywords/commands: Describe: Defines a group of tests. All Pester test files needs at least one Describe-block. It: Defines an individual test. You can have multiple It-blocks inside a De...

Page 1 of 1