Files
Chronometer/Tests/Classes/ScriptProfiler.Tests.ps1
2018-12-28 15:01:15 -08:00

14 lines
281 B
PowerShell

InModuleScope Chronometer {
Describe "Class: ScriptProfiler" -Tag Build {
It "Creates an Object" {
{[ScriptProfiler]::New()} | Should Not Throw
}
It "Start()" {
{[ScriptProfiler]::Start()} | Should Not Throw
}
}
}