Catel.Test.StringToObjectHelperFacts.TheToRightTypeMethod.SupportsBoolean C# (CSharp) Метод

SupportsBoolean() приватный Метод

private SupportsBoolean ( string input, bool expectedValue ) : void
input string
expectedValue bool
Результат void
            public void SupportsBoolean(string input, bool expectedValue)
            {
                var actualValue = StringToObjectHelper.ToRightType(typeof(bool), input);

                Assert.AreEqual(expectedValue, actualValue);
            }
StringToObjectHelperFacts.TheToRightTypeMethod