Exemple #1
0
        public void Activate()
        {
            var hint = new Hint(0, 0, new Size(100, 100), "hint", null);

            hint.SetActive(true);
            Assert.IsTrue(hint.GetStatus());
        }
Exemple #2
0
        public void Block()
        {
            var hint = new Hint(0, 0, new Size(100, 100), "hint", null);

            hint.SetActive(true);
            hint.SetActive(false);
            Assert.IsFalse(hint.GetStatus());
        }