Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
SSV-Core
0.7.1
Tests/math.tests.ps1
Describe
"Testing math functions"
{
It
"adds positive numbers"
{
$sum
=
Add-Numbers
2
3
$sum
|
Should
Be
5
}
}