use of org.bboxdb.distribution.partitioner.StaticgridSpacePartitioner in project bboxdb by jnidzwetzki.
the class TestStaticgridSpacePartitioner2 method testSplitFailed.
/**
* Test the split failed call
* @throws BBoxDBException
* @throws ZookeeperNotFoundException
* @throws ZookeeperException
*/
@Test(expected = BBoxDBException.class)
public void testSplitFailed() throws BBoxDBException, ZookeeperException, ZookeeperNotFoundException {
final StaticgridSpacePartitioner spacePartitioner = getSpacePartitioner();
spacePartitioner.splitFailed(null, null);
}
use of org.bboxdb.distribution.partitioner.StaticgridSpacePartitioner in project bboxdb by jnidzwetzki.
the class TestStaticgridSpacePartitioner2 method testGetDestinationForMerge.
/**
* Test the get destination for merge call
* @throws BBoxDBException
* @throws ZookeeperNotFoundException
* @throws ZookeeperException
*/
@Test(expected = BBoxDBException.class)
public void testGetDestinationForMerge() throws BBoxDBException, ZookeeperException, ZookeeperNotFoundException {
final StaticgridSpacePartitioner spacePartitioner = getSpacePartitioner();
spacePartitioner.getDestinationForMerge(null);
}
use of org.bboxdb.distribution.partitioner.StaticgridSpacePartitioner in project bboxdb by jnidzwetzki.
the class TestStaticgridSpacePartitioner2 method testSplitRegion.
/**
* Test the split region call
* @throws BBoxDBException
* @throws ZookeeperNotFoundException
* @throws ZookeeperException
*/
@Test(expected = BBoxDBException.class)
public void testSplitRegion() throws BBoxDBException, ZookeeperException, ZookeeperNotFoundException {
final StaticgridSpacePartitioner spacePartitioner = getSpacePartitioner();
spacePartitioner.splitRegion(null, null);
}
use of org.bboxdb.distribution.partitioner.StaticgridSpacePartitioner in project bboxdb by jnidzwetzki.
the class TestStaticgridSpacePartitioner2 method testSplitComplete.
/**
* Test the split complete call
* @throws BBoxDBException
* @throws ZookeeperNotFoundException
* @throws ZookeeperException
*/
@Test(expected = BBoxDBException.class)
public void testSplitComplete() throws BBoxDBException, ZookeeperException, ZookeeperNotFoundException {
final StaticgridSpacePartitioner spacePartitioner = getSpacePartitioner();
spacePartitioner.splitComplete(null, null);
}
use of org.bboxdb.distribution.partitioner.StaticgridSpacePartitioner in project bboxdb by jnidzwetzki.
the class TestStaticgridSpacePartitioner2 method testPrepareMerge.
/**
* Test the prepare merge call
* @throws BBoxDBException
* @throws ZookeeperNotFoundException
* @throws ZookeeperException
*/
@Test(expected = BBoxDBException.class)
public void testPrepareMerge() throws BBoxDBException, ZookeeperException, ZookeeperNotFoundException {
final StaticgridSpacePartitioner spacePartitioner = getSpacePartitioner();
spacePartitioner.prepareMerge(null, null);
}
Aggregations