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

org.junit.FixMethodOrder.scala Maven / Gradle / Ivy

The newest version!
/*
 * Ported from https://github.com/junit-team/junit
 */
package org.junit

import java.lang.annotation._

import org.junit.runners.MethodSorters

class FixMethodOrder(val value: MethodSorters)
    extends Annotation {

  def this() = this(MethodSorters.DEFAULT)

  def annotationType(): Class[_ <: Annotation] = classOf[FixMethodOrder]
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy