0

我为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

我究竟做错了什么?

4

1 回答 1

1

只是心理调试:

您的模块已安装,并且您的测试正在针对模块而不是:'.\functions\New-DbaSqlConnectionStringBuilder.ps1' 文件运行。

于 2017-10-11T15:18:30.040 回答