Пример #1
0
        public void HoverGetPointCount()
        {
            tlog.Debug(tag, $"HoverGetPointCount START");
            /* TEST CODE */
            Hover hover = new Hover();

            Assert.AreEqual(0, hover.GetPointCount(), "Should be equals to the origin value of pointCount");
            tlog.Debug(tag, $"HoverGetPointCount END (OK)");
            Assert.Pass("HoverGetPointCount");
        }
Пример #2
0
        public void HoverGetPointCount()
        {
            tlog.Debug(tag, $"HoverGetPointCount START");

            var testingTarget = new Hover();

            Assert.IsNotNull(testingTarget, "Can't create success object Hover");
            Assert.IsInstanceOf <Hover>(testingTarget, "Should be an instance of Hover type.");

            tlog.Debug(tag, "PointCount : " + testingTarget.GetPointCount());

            tlog.Debug(tag, $"HoverGetPointCount END (OK)");
            Assert.Pass("HoverGetPointCount");
        }