public void EncapsulatedDataShouldWriteToSetText()
        {
            EncapsulatedData data   = new EncapsulatedData("It's Non-Mutable");
            WrappedUiWidget  widget = new WrappedUiWidget();

            data.DisplayValue(widget);

            Assert.AreEqual("It's Non-Mutable", widget.Text);
        }
        public void WrappedUiWidgetShouldExtendSetTexte()
        {
            ISetText enc = new WrappedUiWidget();

            Assert.IsNotNull(enc);
        }
        public void WrappedUiWidgetShouldExtenBaseUiWidget()
        {
            BaseUiWidget enc = new WrappedUiWidget();

            Assert.IsNotNull(enc);
        }