Automation.CodeDOMTest.Testmethod C# (CSharp) Method

Testmethod() private method

private Testmethod ( ) : void
return void
        public void Testmethod()
        {
            string expected = "";
            string result = "";

            StreamReader sr = new StreamReader("C:\\codedomconfig.txt");
            string filename = sr.ReadLine();
            sr.Close();
            GetFile("C:\\source\\" + filename, ref expected, ref result);

            Assert.AreEqual(expected, result);
        }