Alexey Romanov
Alexey Romanov

Reputation: 170713

Automatic performance testing of Scala libraries

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

Upvotes: 7

Views: 2059

Answers (2)

om-nom-nom
om-nom-nom

Reputation: 62835

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

Upvotes: 10

retronym
retronym

Reputation: 55028

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

Upvotes: 7

Related Questions