Ejemplo n.º 1
0
        public void ChildTestOnPrimaryComp()
        {
            var childComponent = new ChildComponent.ChildComponent();

            childComponent.OnPrimaryComponent = true;

            Assert.AreEqual(true, childComponent.OnPrimaryComponent);
        }
Ejemplo n.º 2
0
        public void ChildTestAccessory()
        {
            var childComponent = new ChildComponent.ChildComponent();

            childComponent.Accessory = true;

            Assert.AreEqual(true, childComponent.Accessory);
        }