Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
12 lines (10 sloc)
513 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Describe 'Dev Tools Installer' { | |
It 'installs Framework .Net 4.5.2 or newer' { | |
Test-Path "HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full" | Should be $true | |
$key = Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full" | |
$key.Release | Should BeGreaterThan 378758 #378758 is .net 4.5.1 | |
} | |
It 'ensure MSBuild 14 is present at the expected location' { | |
Test-Path "C:\Program Files (x86)\MSBuild\14.0\Bin\MSBuild.exe" | Should be $true | |
} | |
} |