https://github.com/sebastiangraf/perfidix
Perfidix - No discussions, Just facts.
https://github.com/sebastiangraf/perfidix
Last synced: 2 months ago
JSON representation
Perfidix - No discussions, Just facts.
- Host: GitHub
- URL: https://github.com/sebastiangraf/perfidix
- Owner: sebastiangraf
- License: bsd-3-clause
- Created: 2011-11-18T09:41:08.000Z (over 14 years ago)
- Default Branch: develop
- Last Pushed: 2021-05-17T21:55:44.000Z (almost 5 years ago)
- Last Synced: 2024-04-17T10:45:39.488Z (almost 2 years ago)
- Language: Java
- Homepage: http://perfidix.org
- Size: 39.1 MB
- Stars: 17
- Watchers: 2
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-java - Perfidix
README
#Perfidix - No discussions, Just facts.
Perfidix is a light-weight java library enabling users to benchmark sourcecode.
Similar to JUnit, annotations can be placed before methods.
Within the invocation of these methods, flexible measurements are performed.
An eclipse plugin (Perclipse, available under https://github.com/sebastiangraf/perclipse) offers easy usage of any annotated methods.
[](http://travis-ci.org/sebastiangraf/perfidix)
##5 steps how to use Perfidix
* Get the lastest jar over Github or Maven
```xml
org.perfidix
perfidix
4.0.0
```
* Annotate your methods to bench with `@Bench`. Note that these methods have to have the following layout: `public (final) void method()`.
* Create a new `Benchmark` object.
* Add the class with the annotated methods to it with `benchmarkObj.add(MyBenchmarkTest.class)`.
* Get the `BenchmarkResult` with `benchmarkObj.run()`.
* Display the result with the `new TabularSummaryOutput().visitBenchmark(benchmarkResultObj)`.
OR
* Install the Perclipse Plugin over its update site (http://sebastiangraf.github.com/perclipse/) and run over "Run As" (see the Perclipse-Readme for further information: https://github.com/sebastiangraf/perclipse).
For further documentation and as an example, please refer to the `org.perfidix.example` package.
##Content
* README: this readme file
* LICENSE: license file
* src: Source folder for perfidix itself
* pom.xml: Simple pom (yes we use Maven)
##License
This work is released in the public domain under the BSD 3-clause license
##Further information
The documentation so far is accessible under http://perfidix.org (pointing to http://sebastiangraf.github.com/perfidix/).
The framework was presented at the Jazoon '07 as work in progress. The paper can be found over [here](http://nbn-resolving.de/urn:nbn:de:bsz:352-opus-84446).
Any questions, just contact sebastian.graf AT uni-konstanz.de
##Involved People
Perfidix is maintained by:
* Sebastian Graf (Perfidix Core & Project Lead)
Concluded subprojects were:
* [Nico Haase](mailto:nico@nicohaase.de) (Parameterized Benchmarks)
* Nuray Gürler (Mocking and Maven-Website)
* Bastian Lemke (Graph Output)
* Alexander Onea (first release of the core)
* Tim Petrowski (first release of the core)
* Marc Kramis (Project Lead until 2007)