testing co-processors

2014-01-28 Thread Sujee Maniyam
Hi all, I am looking for a way to test co-processors. Some thing similar to mrunit. is there a mock framework in hbase that I can use? thanks in advance. Sujee Maniyam (http://sujee.net)

Re: testing co-processors

2014-01-28 Thread Adrien Mogenet
Hi, You can load your CP through the HBaseTesting utility and test it that way! -- Adrien Mogenet >From my mobile phone On 29 Jan 2014 07:25, "Sujee Maniyam" wrote: > Hi all, > > I am looking for a way to test co-processors. Some thing similar to > mrunit. > is there a mock framework in hbase

Re: testing co-processors

2014-01-28 Thread Joshi, Rekha
Use o.a.h.hbase.HBaseTestingUtility You will find a sample usage in hbase-examples. Thanks Rekha On 29/01/14 11:53 AM, "Sujee Maniyam" wrote: >Hi all, > >I am looking for a way to test co-processors. Some thing similar to >mrunit. >is there a mock framework in hbase that I can use? > >thanks i

Re: testing co-processors

2014-01-29 Thread Roman Nikitchenko
My approach (with maven) is the following: 1. Co-processors package is built as separate artifact and they are tested in context of another module as part of integration testing. 2. Module is built with co-processor package placed with dependency plugin. It's location is passed to test through syst