mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-07 03:36:44 +02:00
Add Wox.CrashReporter
This commit is contained in:
27
Wox.Test/SemanticVersionTest.cs
Normal file
27
Wox.Test/SemanticVersionTest.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using NUnit.Framework;
|
||||
using Wox.Core.Version;
|
||||
|
||||
namespace Wox.Test
|
||||
{
|
||||
[TestFixture]
|
||||
public class SemanticVersionTest
|
||||
{
|
||||
[Test]
|
||||
public void CompareTest()
|
||||
{
|
||||
SemanticVersion v1 = new SemanticVersion(1, 1, 0);
|
||||
SemanticVersion v2 = new SemanticVersion(1, 2, 0);
|
||||
SemanticVersion v3 = new SemanticVersion(1, 1, 0);
|
||||
SemanticVersion v4 = new SemanticVersion("1.1.0");
|
||||
Assert.IsTrue(v1 < v2);
|
||||
Assert.IsTrue(v2 > v1);
|
||||
Assert.IsTrue(v1 == v3);
|
||||
Assert.IsTrue(v1.Equals(v3));
|
||||
Assert.IsTrue(v1 == v4);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user