File size: 993 Bytes
8c763fb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | # Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
Describe "DotNetAPI" -Tags "CI" {
It "Should be able to use static .NET classes and get a constant" {
[System.Math]::E | Should -Be 2.718281828459045
[System.Math]::PI | Should -Be 3.141592653589793
}
It "Should be able to invoke a method" {
[System.Environment]::GetEnvironmentVariable("PATH") | Should -Be $env:PATH
}
It "Should not require 'system' in front of static classes" {
[Environment]::CommandLine | Should -Be ([System.Environment]::CommandLine)
[Math]::E | Should -Be ([System.Math]::E)
}
It "Should be able to create a new instance of a .Net object" {
[System.Guid]$guidVal = [System.Guid]::NewGuid()
$guidVal | Should -BeOfType Guid
}
It "Should access types in System.Console" {
$type = "System.Console" -as [type]
$type.GetTypeInfo().FullName | Should -BeExactly "System.Console"
}
}
|