We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e84a36 commit bf336d6Copy full SHA for bf336d6
Tests/UnitValueTests.cs
@@ -14,6 +14,7 @@ public void TryConvertReturnsFalseOnIncompatibleUnits()
14
Assert.False(new UnitValue(1, Unit.Pascal).TryConvert(Unit.Second, out newValue));
15
Assert.False(new UnitValue(1, Unit.SquareMeter).TryConvert(Unit.Second, out newValue));
16
Assert.False(new UnitValue(1, Unit.CubicMeter).TryConvert(Unit.Second, out newValue));
17
+ Assert.False(new UnitValue(1, Unit.Degree).TryConvert(Unit.Second, out newValue));
18
}
19
20
0 commit comments