java - Maven and numerical performance -


i have maven project has custom machine learning classifier. using surefire plugin testing custom library, check border cases of classifier , stuff. want evaluate performance of algorithm data have. there maven plugin, or best practice run these "tests" (not unit tests, not integration tests, performance evaluations)? mean, i'm looking being able like

mvn test >> tests run: 2, failures: 0, errors: 0, skipped: 0 mvn "lets-say-performance-test?" >> precision: 0.9, recall: 0.4, f-score: 0.55 

i know create non-asserting pojo test surefire, prints metrics have, want know if there plugin want in more standardized way.

if want print on console result of performance can use http://www.mojohaus.org/exec-maven-plugin/ execute classes have , attach build/test phase.

but might more judicious have run real unit test example detect abnormal performance values...


Comments

Popular posts from this blog

c - Bitwise operation with (signed) enum value -

xslt - Unnest parent nodes by child node -

YouTubePlayerFragment cannot be cast to android.support.v4.app.Fragment -