org.scalatest.Rerunnable.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scalatest_2.8.0 Show documentation
Show all versions of scalatest_2.8.0 Show documentation
ScalaTest is a free, open-source testing toolkit for Scala and Java programmers.
The newest version!
/*
* Copyright 2001-2008 Artima, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.scalatest
/**
* Trait formerly used to rerun tests or other entities (such as suites). Note: this trait
* has been deprecated and will be removed in a future version of ScalaTest.
*
*
* As of version 1.0, trait Rerunnable is no longer used by the ScalaTest API. It has essentially been replaced
* by trait Rerunner. It will be removed after a two-release deprecation cycle.
* Please migrate any uses of Rerunnable to use trait Rerunner instead.
*
*
* @author Bill Venners
*/
trait Rerunnable {
/**
* Note: This trait has been deprecated and will be removed in a future version of ScalaTest.
*/
@deprecated // deprecated in 1.0, so remove in 1.4
def rerun(reporter: Reporter, stopper: Stopper, includes: Set[String], excludes: Set[String],
properties: Map[String, Any], distributor: Option[Distributor], loader: ClassLoader): Unit
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy