A straightforward framework designed for creating and executing automated tests to evaluate performance and scalability. It functions similarly to JUnit but focuses on performance measurement. Implement the PerfTest interface in a class and utilize the PerfTestRunner to execute the test.
JPerf is a simple framework for writing and running automated performance and scalability tests. It's like JUnit but for performance. Simple write a class that implements PerfTest then create a PerfTestRunner instance to run the test.
Features:
- Measure throughput and latency as number of threads grow
- Can be used to measure performance of any Java code
- Perfect for measuring the impact of performance optimizations
- Shows average duration and throughput (invocations per second)
Comments