Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Automatic performance testing of Scala libraries

Do any Scala testing libraries help with performance tests? Can't find anything relevant in ScalaTest or specs.

like image 973
Alexey Romanov Avatar asked Jun 14 '10 20:06

Alexey Romanov


2 Answers

ScalaMeter (hat tip to Alexandar Procopec): a microbenchmarking and performance regression testing framework for the JVM platform that allows expressing performance tests in a way which is both simple and concise.

  • It can be used both from Scala and Java.
  • write performance tests in a DSL similar to ScalaTest and ScalaCheck
  • specify test input data
  • specify how test results are collected
  • organize performance tests hierarchically
like image 186
om-nom-nom Avatar answered Sep 28 '22 01:09

om-nom-nom


SPerformance is heading towards this goal: http://github.com/jsuereth/sperformance/

like image 29
retronym Avatar answered Sep 28 '22 00:09

retronym