We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d376002 commit bd52ea0Copy full SHA for bd52ea0
test/UnitTest.cs
@@ -14,18 +14,6 @@ namespace Shadowsocks.Test
14
[TestClass]
15
public class UnitTest
16
{
17
- [TestMethod]
18
- public void TestCompareVersion()
19
- {
20
- Assert.IsTrue(UpdateChecker.Asset.CompareVersion("2.3.1.0", "2.3.1") == 0);
21
- Assert.IsTrue(UpdateChecker.Asset.CompareVersion("1.2", "1.3") < 0);
22
- Assert.IsTrue(UpdateChecker.Asset.CompareVersion("1.3", "1.2") > 0);
23
- Assert.IsTrue(UpdateChecker.Asset.CompareVersion("1.3", "1.3") == 0);
24
- Assert.IsTrue(UpdateChecker.Asset.CompareVersion("1.2.1", "1.2") > 0);
25
- Assert.IsTrue(UpdateChecker.Asset.CompareVersion("2.3.1", "2.4") < 0);
26
- Assert.IsTrue(UpdateChecker.Asset.CompareVersion("1.3.2", "1.3.1") > 0);
27
- }
28
-
29
[TestMethod]
30
public void TestHotKey2Str()
31
0 commit comments