我为dbatools编写了一个名为New-DbaSqlConnectionStringBuilder的函数。我为它写了单元测试。我知道这些单元测试涵盖了大部分功能。我使用以下命令得到 0% 的代码覆盖率报告。
调用-Pester .\tests\New-DbaSqlConnectionStringBuilder.Tests.ps1 -CodeCoverage .\functions\New-DbaSqlConnectionStringBuilder.ps1
下面的精简输出:
**********************
Running C:\Users\zippy\Documents\dbatools\tests\New-
. . .
Unit tests happen
. . .
Passed: 16 Failed: 0 Skipped: 0 Pending: 0 Inconclusive: 0
Code coverage report:
Covered 0.00% of 21 analyzed commands in 1 file.
要获取此版本的代码:
git clone https://github.com/zippy1981/dbatools.git
cd dbatools
git checkout testing/PesterCodeCoverage
Import-Module .\dbatools.psd1
我究竟做错了什么?