I have couple of test classes that extends NbTestCase and run NbModuleTestSuite. I have added few modules as test dependencies.
Running individual test class works fine. However running, the collection of tests as package fails.
some package
-->test1{ nbtestsuite}
-->test2{nbtestsuite}
-->libraries
-->some module dependencies
say test1 and test2 passes when run seperately. However when tested as package only the first test passes and other fails with noclassdeffounderror pointing to one of the module dependency.
Any help is appreciated.