[Settings.UI.UnitTests][FancyZones] Uncomment test in CI (#14230)

* uncomment test

* fix typo
This commit is contained in:
Seraphima Zykova 2021-11-03 21:06:29 +03:00 committed by GitHub
parent 9ca32aa3ea
commit 3ead98a770
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -230,10 +230,7 @@ namespace ViewModelTests
Assert.AreEqual(expected, actual);
}
/*
* Temporarily commented out
*
[TestMethod]
[TestMethod]
public void MakeDraggedWindowsTransparentShouldSetValue2TrueWhenSuccessful()
{
Mock<SettingsUtils> mockSettingsUtils = new Mock<SettingsUtils>();
@ -247,9 +244,9 @@ namespace ViewModelTests
// assert
var expected = viewModel.MakeDraggedWindowsTransparent;
var actual = SettingsRepository<FancyZonesSettings>.GetInstance(mockFancyZonesSettingsUtils.Object).SettingsConfig.Properties.FancyzonesShiftDrag.Value;
var actual = SettingsRepository<FancyZonesSettings>.GetInstance(mockFancyZonesSettingsUtils.Object).SettingsConfig.Properties.FancyzonesMakeDraggedWindowTransparent.Value;
Assert.AreEqual(expected, actual);
}*/
}
[TestMethod]
public void MouseSwitchShouldSetValue2TrueWhenSuccessful()