String primaryTypeName = getPrimaryTypeName(session, node);
if (primaryTypeName == null) {
throw new NotExecutableException("No testable node type found");
}
node.checkin();
try {
node.setPrimaryType(primaryTypeName);
fail("Node.setPrimaryType(String) must throw a VersionException if the node is checked-in.");
} catch (VersionException e) {