CTCUnitTests.TextInputDialogTest.PromptTextTest1 C# (CSharp) Method

PromptTextTest1() private method

private PromptTextTest1 ( ) : void
return void
        public void PromptTextTest1()
        {
            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.");
        }