public void EmPropertyString_FromString_GoodString_GetExpected(string goodString, string expectedValue)
        {
            var testProp = new TestStringProperty("TestKey");

            testProp.FromString(goodString);

            Assert.AreEqual(expectedValue, testProp.Value);
        }
Beispiel #2
0
 set => SetValue(TestStringProperty, value);