Skip to content
Snippets Groups Projects
Commit 49bb2b67 authored by Richard Schwarting's avatar Richard Schwarting
Browse files

* add NodeListTest stub

parent 3308ec1a
Branches
Tags
No related merge requests found
/* -*- Mode: vala; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
using GXml.Dom;
class NodeListTest {
private static Document get_doc () {
Document doc = null;
try {
doc = new Document.for_path ("test.xml");
} catch (DomError e) {
}
return doc;
}
private static Element get_elem (string name) {
return get_doc ().create_element (name);
}
public static void add_tests () {
Test.add_func ("/gxml/nodelist/length", () => {
});
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment