AcoustID.Tests.Web.XmlResponseParserTest.TestCanParse C# (CSharp) 메소드

TestCanParse() 개인적인 메소드

private TestCanParse ( ) : void
리턴 void
        public void TestCanParse()
        {
            var xml = TestsHelper.LoadTextFile("lookup-simple.xml");

            var parser = new XmlResponseParser();
            var response = parser.CanParse(xml);

            Assert.AreEqual(response, true);
        }