mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-01-11 19:44:55 +00:00
18 lines
333 B
C#
18 lines
333 B
C#
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);
|
|
}
|
|
}
|
|
}
|