Assert.assertTrue(actionTypes.contains(test));
}
@Test
public void testLoadConnectorTypes() throws Exception {
StandardTypeLoader typeLoader = new StandardTypeLoader();
Set<ConnectorType> connectorTypes = typeLoader.loadConnectorTypes();
Assert.assertTrue(connectorTypes.size() > 0);
ConnectorType test = new ConnectorType("", "", MockConnector.class);
Assert.assertTrue(connectorTypes.contains(test));
}