Пример #1
0
 /**
  * Test cps in the table description
  *
  * @throws Exception
  */
 @Test
 public void testGetSetRemoveCP() throws Exception {
   HTableDescriptor desc = new HTableDescriptor("table");
   // simple CP
   String className = BaseRegionObserver.class.getName();
   // add and check that it is present
   desc.addCoprocessor(className);
   assertTrue(desc.hasCoprocessor(className));
   // remove it and check that it is gone
   desc.removeCoprocessor(className);
   assertFalse(desc.hasCoprocessor(className));
 }