Hi I want to run UT (unit test) for my oozie workflows. In Oozie docs there is the http://oozie.apache.org/docs/4.1.0/ENG_MiniOozie.html. For running UT, it requires to git the oozie project and use the embedded minitest project (I use eclipse) to run tests, by creating classes that extends MiniOozieTestCase class.
But I want to run UT for my oozie workflows on my project (eclipse). When I tried by creating class that extends MiniOozieTestCase, it failed on error “Could not determine project root directory” , as MiniOozieTestCase expect to run under oozie project with its resource directory(oozie-4.1.0/core/src/test/resources). Is there an elegant way to use the MiniOozie for UT outside of minitest project ? (I want to run this UT on environment like Jenkins where I want to run my project solely) Regards Raanan Nitzan
