ACPTest.UITesting.EntitySearchForPlace C# (CSharp) Method

EntitySearchForPlace() private method

private EntitySearchForPlace ( ) : void
return void
        public void EntitySearchForPlace()
        {
            this.UIMap.LaunchMicrosoftWord();
            UIMap.EntitySearchForPlace();
            UIMap.SaveDocument(directory + fileName);
            UIMap.ExitWindow();

            String output = UIMap.readFile(directory + fileName + ".txt");
            String expected = "He was born in the city of San Francisco";
            File.Delete(directory + fileName + ".txt");

            Assert.AreEqual(output.Trim().ToLower(), expected.Trim().ToLower());
        }