I wrote some tests using Caliper . How can I run several tests at once? I currently have many classes that extend SimpleBenchmark and have several timeXXX methods. Is it possible to run all this at the same time?
Simplebenchmark javadocs say:
Set control values ββare determined. They can be static. They are not allowed to accept parameters., ..
I'm sorry, what? It looks incomplete.
Caliper the mailing list says this is not for Q & A, and to post a question with the tag "support" here. However, I see SO null messages with this tag! Since I don't have a 1500 reputation yet, I cannot create a new tag.
Use case: there is only one setUp / tearDown method. I have many tests in my test class, each of which allocates a lot of memory. Currently, I have to use a giant heap that is only increasing as I add more tests. In addition, many tests in a single file are somewhat inconvenient to maintain. It would be nice to specify several reference classes and all tests in each of them will be considered as one run.
Nates source share