Hi, Look at the tests in the client package. Typically TestFromClientSide. You may want to write some 'pure' unit test as well (i.e. small category). Then you may want to create a specific class. And I wouldn't be against a test class for HTable, especially is it can be one that doesn't start a cluster.
In all cases, public boolean[] exists(Get[] gets) is not good imho. You need this to be consistent with the API: public Boolean[] exists(List<Get> gets) Boolean and not boolean to manage the failures (null means failure for this get). List vs. array purely for consistency. Cheers, Nicolas On Sat, Jan 5, 2013 at 5:30 PM, Jean-Marc Spaggiari <[email protected] > wrote: > public boolean[] exists(Get[] gets
