@Test
public void testConnection()
{
logger.info("On test connection");
ClientFactory clientFactory = ClientResolver.getClientFactory(PU);
Assert.assertNotNull(clientFactory);
Assert.assertEquals(OracleNoSQLClientFactory.class, clientFactory.getClass());
Field connectionField;
try
{
String field_name = "connectionPoolOrConnection";
connectionField = ((OracleNoSQLClientFactory) clientFactory).getClass().getSuperclass()