Example #1
0
        public void DesignMode_GetWithCustomSite_ReturnsFalse()
        {
            // DesignMode uses the private _site field instead of the Site property.
            var component = new DifferentSiteComponent();

            Assert.False(component.DesignMode);
        }
Example #2
0
        public void DesignMode_GetWithCustomSite_ReturnsNull()
        {
            // DesignMode uses the private _site field instead of the Site property.
            var component = new DifferentSiteComponent();

            Assert.Null(component.Container);
        }