public void TestTestSchemaWithXsd() { // Arrange const string contents = @"test"; var doc = new TextParser(contents); // Act doc.TestSchemaWithXsd(null); }
public void TestGetDocumentValues() { // Arrange const string contents = @"test"; var doc = new TextParser(contents); // Act doc.GetDocumentValues("//name", null); }
public void TestExistsNode() { // Arrange const string contents = @"test"; var doc = new TextParser(contents); // Act doc.ExistsNode("", null); }
public void TestGetDocumentValue() { // Arrange const string contents = @"test"; var doc = new TextParser(contents); // Act var result = doc.GetDocumentValue("", null); // Arrange Assert.AreEqual(result, "test"); }