/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/powershell/Language/Interop/DotNet/DotNetAPI.Tests.ps1
29 строк
993 B
Steve Lee
Update copyright notice to latest guidance (#12190)
24 мар 2020, 21:08
Не верифицирован
24 мар 2020, 21:08
b7cb335
Код
Авторство
О чём код?
# 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" } }