Automated performance testing of Scala libraries

Do any Scala test libraries help with performance tests? Unable to find anything relevant in ScalaTest or specifications.

+6
performance scala performance-testing
source share
2 answers

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

+7
source share

ScalaMeter (Alexandar Procopec tooltip): A framework for checking regression performance and ranking performance for the JVM platform, which allows you to express performance tests in a way that is simple and concise.

  • It can be used from both Scala and Java.
  • write performance tests in DSL similar to ScalaTest and ScalaCheck
  • specify test input
  • indicate how test results are collected.
  • organize hierarchical performance tests
+10
source share

All Articles