Saving initial MSTest configuration

First part of installing an MSTest suite.
Included some config file to read in
for testing the ShortcutRepository and
the ProfileRepository. Had the data
handy so it made sense to save it :)
This commit is contained in:
terrymacdonald
2020-07-26 20:52:46 +12:00
parent 85de9b0697
commit 41c03c30b5
29 changed files with 183 additions and 2 deletions

View File

@ -685,6 +685,10 @@ namespace HeliosPlus
if (ProfileRepository.IsActiveProfile(profile))
return true;
// We need to check if the profile is valid
if (!profile.IsPossible)
return false;
var instanceStatus = IPCService.GetInstance().Status;
try