}
protected void runTest() throws Throwable {
OMFactory factory = metaFactory.getOMFactory();
OMNamespace ns = factory.createOMNamespace("", "");
OMSourcedElement element = factory.createOMElement(new CharArrayDataSource(
"<element>content</element>".toCharArray()), "element", ns);
// This actually returns the "declared" namespace because the sourced element is not
// expanded yet. Nevertheless the value should have been normalized to null.
assertNull(element.getNamespace());
// Now expand the element and check getNamespace() again