예제 #1
0
        public void GetPreciseTotalSeconds()
        {
            var instrumentation = new Instrumentation();

            instrumentation.StartPrecise();
            Thread.Sleep(700);
            var result = instrumentation.GetPreciseElapsedTimeAndStop();

            Assert.True(result >= 700 && result <= 702);
        }