Hi, I would like to execute JUnit on a remote machine hosting a JVM embedded and linked to a C application through JNI. This JVM has state and access to live external resources and data which of course are not available in my build/test environment. In addition, my test/dev JVM is not linked to the C application and uses mock objects, so the behavior in test/live environments are totally different
My JUnit currently focus on unit testing but I would like to run functional on the live remote JVM. I had a look to TPTP but it seems to focus on profiling, I could not find any resources or help on this... Anyone with a similar problem? (of course I could build something ad-hoc but I'd rather save time...)
Thanks.