Hi, I have some JUnit/Cactus tests that I am converting to JUnitPerf timed and load tests. The JUnit test deploys and undeploys in setUp () and tearDown()....
hi eveyone.. i am new to JUnit, JUnitPerf and Ant. can someone point me to a tutorial on how to generate reports from JUnitPerf test suites? can this be done...
... To the extent that JUnitPerf tests are just JUnit tests, you can produce an HTML report of JUnitPerf test results using the standard <junitreport> task in...
Hi, is there functionality within JUnitPerf to create a TimedTest from a JUnit TestSuite that contians more than one test method and have JUnitPerf report...
... No, it treats a single test method or a suite of tests uniformly. JUnitPerf simply wraps a Test instance, so it doesn't have insight into the parts and...
At the moment the performance test range caters for a maximum execution time for a test case. How could one go about determining the average time for the test...
Hi, I have a unit test that works fine. I am having trouble decorating this test as a JUnitPerf test. I've done this before, so I am stumbed at the issue I...
I have found that the reported total number of tests run is wrong when some of the tests fail. I see figures like "Runs: 1007/1000". I'm running the tests...
... Thanks for the report, Ken. This is the first time I've heard of such a problem. I'll look into it before releasing the next version of JUnitPerf. I...
Hi all, I'm a new in JunitPerf i want to know if I've ability to generate report with information about my test (users no ,Time Response And result) with...
... Since JUnitPerf is designed to work with JUnit, you may use any of the standard JUnit test runners and reports. For example, the build.xml file included...
hi alllllllllll, i'm so sorry for some mails sending to you it's a virus which send mail by the name of you plz take care and dont open any mail from me with...
To Whom It May Concern: This is the first time, I am using Junit. I have question. I ran the following code: public class MailSortServicePerfTest { public...
... That's correct, it's measuring the response time of each user. I'm not sure how you're seeing output. Paste it in here if you need more help. Mike...
Howdy, I've been using JUnitPerf for a while with no problem on containerless tests. I just started to try and use it with remote tests to my beans running in...
I've been happily using JUnitPerf's TimedTest, but I'd also like to use JUnit4. Unfortunately JUnit4's timeout requires a constant expression, but I want to be...
Hi, I can't seem to be able to use JUnitPerf with JUnit4 either.. It would be great if someone can show me an example of how I can use TimedTest and LoadTest...
I too have problems using Junitperf with Junit4 test cases that do not implement Test interface. Anyone has any ideas or other ways of using this tool with...
Hi, I just downloaded junitperf version 1.9.1 and I am doing a POC with jdk 6 (tried jdk1.5 as well) as stated in junitperf page. My simple load test case not...
Thanks Mike. That works. I was hoping that not calling the constructor that takes method name would result into calling all test methods automatically. Most of...
... The design of JUnit only allows decoration around the setup/test/ teardown lifecycle, so it can't easily be avoided. If your setup method is expensive...