Esempio n. 1
0
        public void TestIfAddAsChildToThrowsWithNullParent()
        {
            Panel nullParent = null;

            UIElement someElement = new Button();

            someElement.AddAsChildTo(nullParent);
        }