public void testCluster() {
AstyanaxContext<Cluster> clusterContext = new AstyanaxContext.Builder()
.forCluster(TEST_CLUSTER_NAME)
.withAstyanaxConfiguration(new AstyanaxConfigurationImpl())
.withConnectionPoolConfiguration(
new ConnectionPoolConfigurationImpl(TEST_CLUSTER_NAME)
.setSeeds(SEEDS).setSocketTimeout(30000)
.setMaxTimeoutWhenExhausted(200)
.setMaxConnsPerHost(1))
.withConnectionPoolMonitor(new CountingConnectionPoolMonitor())
.buildCluster(ThriftFamilyFactory.getInstance());