summaryrefslogtreecommitdiff
path: root/core/source/benchmark/scala/com/rockymadden/stringmetric/CaliperRunner.scala
blob: 4474a8dcfad9bcce71d5f2334a88f70ee1584655 (plain) (blame)
1
2
3
4
5
6
7
package com.rockymadden.stringmetric

import com.google.caliper.{Benchmark, Runner}

abstract class CaliperRunner(private[this] val suite: java.lang.Class[_ <: Benchmark]) {
	def main(args: Array[String]): Unit = Runner.main(suite, args)
}