public void InitializedLocalText_StoresInitialTextAsIs()
        {
            var text = new InitializedLocalText("SomeKey", "  ..SomeText  ");

            Assert.Equal("  ..SomeText  ", text.InitialText);
        }
        public void InitializedLocalText_ConstructorCallsBaseProperly()
        {
            var text = new InitializedLocalText("SomeKey", "SomeText");

            Assert.Equal("SomeKey", text.Key);
        }