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

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

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