Files
ICD.Common.Utils/ICD.Common.Utils.Tests/Timers/IcdStopwatchTest.cs
2019-08-07 20:47:54 -04:00

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);
}
}
}