Exemplo n.º 1
0
        public void WatchTimeSignalEmpty()
        {
            tlog.Debug(tag, $"WatchTimeSignalEmpty START");

            if (IsWearable())
            {
                var testingTarget = new WatchTimeSignal();
                Assert.IsNotNull(testingTarget, "should be not null");
                Assert.IsInstanceOf <WatchTimeSignal>(testingTarget, "should be an instance of testing target class!");

                var result = testingTarget.Empty();
                Assert.IsTrue(result);

                testingTarget.Dispose();
                tlog.Debug(tag, $"WatchTimeSignalEmpty END (OK)");
            }
            else
            {
                tlog.Debug(tag, $"WatchTimeSignalEmpty END (OK)");
                Assert.Pass("Not Supported profile");
            }
        }