@Test
public void testChangeConnectionType() throws Exception {
VDB vdb = admin.getVDB("TransactionsRevisited", 1);
assertNotNull(vdb); //$NON-NLS-1$
ConnectionType ct = vdb.getConnectionType();
assertEquals(ConnectionType.BY_VERSION, ct);
admin.changeVDBConnectionType("TransactionsRevisited", 1, ConnectionType.ANY);
vdb = admin.getVDB("TransactionsRevisited", 1);