String[] args = {"-f", targetFileDataSet, "-h", host, "-p", port, "-r", "1", "-s",
"org.apache.cassandra.locator.SimpleStrategy"};
CassandraUnitCommandLineLoader.main(args);
/* test */
Cluster cluster = HFactory.getOrCreateCluster(clusterName, host);
assertDefaultValuesSchemaExist(cluster);
assertThat(cluster.describeKeyspace("beautifulKeyspaceName").getReplicationFactor(), not(2));
assertThat(cluster.describeKeyspace("beautifulKeyspaceName").getReplicationFactor(), is(1));
assertThat(cluster.describeKeyspace("beautifulKeyspaceName").getStrategyClass(),
not("org.apache.cassandra.locator.NetworkTopologyStrategy"));
assertThat(cluster.describeKeyspace("beautifulKeyspaceName").getStrategyClass(),
is("org.apache.cassandra.locator.SimpleStrategy"));
EmbeddedCassandraServerHelper.cleanEmbeddedCassandra();
}