public void getClientsTest() throws IOException {
int clients = 10;
mTfs.createFile(new TachyonURI("/0"), 1024);
for (int k = 1; k < clients; k ++) {
TachyonFS tfs = mLocalTachyonClusterMultiMaster.getClient();
tfs.createFile(new TachyonURI(TachyonURI.SEPARATOR + k), 1024);
}
List<String> files = TestUtils.listFiles(mTfs, TachyonURI.SEPARATOR);
Assert.assertEquals(clients, files.size());
for (int k = 0; k < clients; k ++) {
Assert.assertEquals(TachyonURI.SEPARATOR + k, files.get(k));