CTCUnitTests.TextInputDialogTest.TextValueTest C# (CSharp) Метод

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

private TextValueTest ( ) : void
Результат void
        public void TextValueTest()
        {
            TextInputDialog target = new TextInputDialog(); // TODO: Initialize to an appropriate value
            string expected = string.Empty; // TODO: Initialize to an appropriate value
            string actual;
            target.TextValue = expected;
            actual = target.TextValue;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }