org.junit.Ignore.scala Maven / Gradle / Ivy
/*
* Ported from https://github.com/junit-team/junit
*/
package org.junit
import java.lang.annotation._
class Ignore(val value: java.lang.String)
extends scala.annotation.StaticAnnotation with java.lang.annotation.Annotation {
def this() = this("")
def annotationType(): Class[_ <: Annotation] = classOf[Ignore]
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy