diff --git a/X10D.Tests/src/BooleanTests.cs b/X10D.Tests/src/BooleanTests.cs index 3027000..47b5b38 100644 --- a/X10D.Tests/src/BooleanTests.cs +++ b/X10D.Tests/src/BooleanTests.cs @@ -46,8 +46,8 @@ namespace X10D.Tests [TestMethod] public void Not() { - bool a = true; - bool b = false; + const bool a = true; + const bool b = false; Assert.IsTrue(a); Assert.IsFalse(b); @@ -98,10 +98,10 @@ namespace X10D.Tests } /// - /// Tests for . + /// Tests for . /// [TestMethod] - public void Xor() + public void XOr() { const bool a = true; const bool b = true; @@ -161,7 +161,7 @@ namespace X10D.Tests } /// - /// Tests for . + /// Tests for . /// [TestMethod] public void XNOr()