assertEquals( "Extension should have the OADR2 namespace",
XMLNS.OADR2.getNamespaceURI(), extension.getNamespace());
Object pObj = extension.getPayload();
assertNotNull( "Extension payload should not be null", pObj );
assertTrue( "Extension payload should be an OadrSignedObject", pObj instanceof OadrSignedObject );
OadrSignedObject payload = (OadrSignedObject)pObj;
assertEquals( "Request ID should match what was sent",
"test 1234", payload.getOadrDistributeEvent().getRequestID() );
}