@Test
public void testClassMissingConstructor() throws Exception {
properties.setProperty(ACCESS_COORDINATOR_PROPERTY,
MissingConstructorCoordinator.class.getName());
try {
new SgsTestNode(
"TestKernelSetAccessCoordinator", null, properties);
fail("Expected InvocationTargetException");
} catch (InvocationTargetException e) {
Throwable cause = e.getCause();
assertTrue("Expected IllegalArgumentException: " + cause,