Esempio n. 1
0
        public void LayoutEngine_InitLayout_NullChild_ThrowsNullReferenceException()
        {
            var engine = new SubLayoutEngine();

            Assert.Throws <NullReferenceException>(() => engine.InitLayout(null, BoundsSpecified.All));
        }
Esempio n. 2
0
        public void LayoutEngine_InitLayout_InvalidChild_Nop()
        {
            var engine = new SubLayoutEngine();

            engine.InitLayout("child", BoundsSpecified.All);
        }
Esempio n. 3
0
        public void LayoutEngine_InitLayout_NullChild_ThrowsArgumentNullException()
        {
            var engine = new SubLayoutEngine();

            Assert.Throws <ArgumentNullException>("child", () => engine.InitLayout(null, BoundsSpecified.All));
        }
Esempio n. 4
0
        public void LayoutEngine_InitLayout_ValidChild_Nop()
        {
            var engine = new SubLayoutEngine();

            engine.InitLayout(new ScrollableControl(), BoundsSpecified.All);
        }
Esempio n. 5
0
        public void LayoutEngine_InitLayout_InvalidChild_ThrowsNotSupportedException()
        {
            var engine = new SubLayoutEngine();

            Assert.Throws <NotSupportedException>(() => engine.InitLayout("child", BoundsSpecified.All));
        }