Runs the test case.
Document doc;
DocumentFragment docFragment;
Element newOne;
Node domesticNode;
NamedNodeMap domesticAttr;
Attr attrs;
String attrName;
Node appendedChild;
doc = (Document) load("staff", true);
docFragment = doc.createDocumentFragment();
newOne = doc.createElement("newElement");
newOne.setAttribute("newdomestic", "Yes");
appendedChild = docFragment.appendChild(newOne);
domesticNode = docFragment.getFirstChild();
domesticAttr = domesticNode.getAttributes();
attrs = (Attr) domesticAttr.item(0);
attrName = attrs.getName();
assertEquals("attrCreateDocumentFragmentAssert", "newdomestic", attrName);