org.junit.runner.RunWith.scala Maven / Gradle / Ivy
The newest version!
/*
* Ported from https://github.com/junit-team/junit
*/
package org.junit.runner
import java.lang.annotation._
class RunWith(value: Class[_ <: Runner]) extends Annotation {
override def annotationType(): Class[_ <: Annotation] = classOf[RunWith]
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy