All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.gatling.sbt.GatlingFramework.scala Maven / Gradle / Ivy

The newest version!
package io.gatling.sbt

import sbt.testing.{ Fingerprint, Framework }

/**
 * Gatling's test framework.
 * Test classes are filtered to only keep classes matching [[GatlingFingerprint]].
 */
class GatlingFramework extends Framework {

  val name = "gatling"

  val fingerprints = Array[Fingerprint](new GatlingFingerprint)

  def runner(args: Array[String], remoteArgs: Array[String], testClassLoader: ClassLoader) =
    new GatlingRunner(args, remoteArgs, testClassLoader)

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy