diff --git a/ICD.Common.Utils.Tests/Timers/IcdStopwatchTest.cs b/ICD.Common.Utils.Tests/Timers/IcdStopwatchTest.cs new file mode 100644 index 0000000..36a79a8 --- /dev/null +++ b/ICD.Common.Utils.Tests/Timers/IcdStopwatchTest.cs @@ -0,0 +1,17 @@ +using ICD.Common.Utils.Timers; +using NUnit.Framework; + +namespace ICD.Common.Utils.Tests.Timers +{ + [TestFixture] + public sealed class IcdStopwatchTest + { + [Test] + public void ConstructorTest() + { + var stopwatch = new IcdStopwatch(); + ThreadingUtils.Sleep(100); + Assert.AreEqual(0, stopwatch.ElapsedMilliseconds); + } + } +}