final String host = System.getProperty (MemcachedDriverTest.MOSAIC_MEMCACHED_HOST, MemcachedDriverTest.MOSAIC_MEMCACHED_HOST_DEFAULT);
final Integer port = Integer.valueOf (System.getProperty (MemcachedDriverTest.MOSAIC_MEMCACHED_PORT, MemcachedDriverTest.MOSAIC_MEMCACHED_PORT_DEFAULT));
final IConfiguration configuration = PropertyTypeConfiguration.create ();
configuration.addParameter ("memcached.host_1", host);
configuration.addParameter ("memcached.port_1", port);
configuration.addParameter ("kvstore.driver_name", "MEMCACHED");
configuration.addParameter ("kvstore.driver_threads", 1);
configuration.addParameter ("kvstore.bucket", "test");
configuration.addParameter ("kvstore.user", "test");
configuration.addParameter ("kvstore.passwd", "test");
this.wrapper = MemcachedDriver.create (configuration, this.threadingContext);