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

org.scalatest.fixture.package.scala Maven / Gradle / Ivy

/*
 * Copyright 2001-2018 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

/**
 * Classes and traits supporting ScalaTest's "fixture" style traits, which
 * allow you to pass fixture objects into tests.
 *
 * This package is released as part of the `scalatest-core` module.
 */
package object fixture {

  /**
   * The name org.scalatest.fixture.FunSuiteLikeXX has been deprecated and will be removed in a future version of ScalaTest. Please use
   * its new name, org.scalatest.funsuite.FixtureAnyFunSuiteLike, instead.
   *
   * 

This type has been renamed to support future modularization of ScalaTest.

* *

This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

*/ @deprecated("The org.scalatest.fixture.FunSuiteLike trait has been moved and renamed. Please use org.scalatest.funsuite.FixtureAnyFunSuiteLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type FunSuiteLike = org.scalatest.funsuite.FixtureAnyFunSuiteLike /** * The name org.scalatest.fixture.FunSuite has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.funsuite.FixtureAnyFunSuite, instead. * *

This type has been renamed to support future modularization of ScalaTest.

* *

This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

*/ @deprecated("The org.scalatest.fixture.FunSuite trait has been moved and renamed. Please use org.scalatest.funsuite.FixtureAnyFunSuite instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type FunSuite = org.scalatest.funsuite.FixtureAnyFunSuite // SKIP-SCALATESTNATIVE-START /** * The name org.scalatest.fixture.AsyncFunSuiteLike has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.funsuite.FixtureAsyncFunSuiteLike, instead. * *

This type has been renamed to support future modularization of ScalaTest.

* *

This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

*/ @deprecated("The org.scalatest.fixture.AsyncFunSuiteLike trait has been moved and renamed. Please use org.scalatest.funsuite.FixtureAsyncFunSuiteLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type AsyncFunSuiteLike = org.scalatest.funsuite.FixtureAsyncFunSuiteLike /** * The name org.scalatest.fixture.AsyncFunSuite has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.funsuite.FixtureAsyncFunSuite, instead. * *

This type has been renamed to support future modularization of ScalaTest.

* *

This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

*/ @deprecated("The org.scalatest.fixture.AsyncFunSuite trait has been moved and renamed. Please use org.scalatest.funsuite.FixtureAsyncFunSuite instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type AsyncFunSuite = org.scalatest.funsuite.FixtureAsyncFunSuite // SKIP-SCALATESTNATIVE-END /** * The name org.scalatest.fixture.FeatureSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.featurespec.FixtureAnyFeatureSpecLike, instead. * *

This type has been renamed to support future modularization of ScalaTest.

* *

This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

*/ @deprecated("The org.scalatest.fixture.FeatureSpecLike trait has been moved and renamed. Please use org.scalatest.featurespec.FixtureAnyFeatureSpecLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type FeatureSpecLike = org.scalatest.featurespec.FixtureAnyFeatureSpecLike /** * The name org.scalatest.fixture.FeatureSpec has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.featurespec.FixtureAnyFeatureSpec, instead. * *

This type has been renamed to support future modularization of ScalaTest.

* *

This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

*/ @deprecated("The org.scalatest.fixture.FeatureSpec trait has been moved and renamed. Please use org.scalatest.featurespec.FixtureAnyFeatureSpec instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type FeatureSpec = org.scalatest.featurespec.FixtureAnyFeatureSpec // SKIP-SCALATESTNATIVE-START /** * The name org.scalatest.fixture.AsyncFeatureSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.featurespec.FixtureAsyncFeatureSpecLike, instead. * *

This type has been renamed to support future modularization of ScalaTest.

* *

This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

*/ @deprecated("The org.scalatest.fixture.AsyncFeatureSpecLike trait has been moved and renamed. Please use org.scalatest.featurespec.FixtureAsyncFeatureSpecLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type AsyncFeatureSpecLike = org.scalatest.featurespec.FixtureAsyncFeatureSpecLike /** * The name org.scalatest.fixture.AsyncFeatureSpec has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.featurespec.FixtureAsyncFeatureSpec, instead. * *

This type has been renamed to support future modularization of ScalaTest.

* *

This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

*/ @deprecated("The org.scalatest.fixture.AsyncFeatureSpec trait has been moved and renamed. Please use org.scalatest.featurespec.FixtureAsyncFeatureSpec instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type AsyncFeatureSpec = org.scalatest.featurespec.FixtureAsyncFeatureSpec // SKIP-SCALATESTNATIVE-END /** * The name org.scalatest.fixture.FunSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.funspec.FixtureAnyFunSpecLike, instead. * *

This type has been renamed to support future modularization of ScalaTest.

* *

This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

*/ @deprecated("The org.scalatest.fixture.FunSpecLike trait has been moved and renamed. Please use org.scalatest.funspec.FixtureAnyFunSpecLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type FunSpecLike = org.scalatest.funspec.FixtureAnyFunSpecLike /** * The name org.scalatest.fixture.FunSpec has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.funspec.FixtureAnyFunSpec, instead. * *

This type has been renamed to support future modularization of ScalaTest.

* *

This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

*/ @deprecated("The org.scalatest.fixture.FunSpec trait has been moved and renamed. Please use org.scalatest.funspec.FixtureAnyFunSpec instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type FunSpec = org.scalatest.funspec.FixtureAnyFunSpec // SKIP-SCALATESTNATIVE-START /** * The name org.scalatest.fixture.AsyncFunSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.funspec.FixtureAsyncFunSpecLike, instead. * *

This type has been renamed to support future modularization of ScalaTest.

* *

This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

*/ @deprecated("The org.scalatest.fixture.AsyncFunSpecLike trait has been moved and renamed. Please use org.scalatest.funspec.FixtureAsyncFunSpecLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type AsyncFunSpecLike = org.scalatest.funspec.FixtureAsyncFunSpecLike /** * The name org.scalatest.fixture.AsyncFunSpec has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.funspec.FixtureAsyncFunSpec, instead. * *

This type has been renamed to support future modularization of ScalaTest.

* *

This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

*/ @deprecated("The org.scalatest.fixture.AsyncFunSpec trait has been moved and renamed. Please use org.scalatest.funspec.FixtureAsyncFunSpec instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type AsyncFunSpec = org.scalatest.funspec.FixtureAsyncFunSpec // SKIP-SCALATESTNATIVE-END /** * The name org.scalatest.fixture.FreeSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.freespec.FixtureAnyFreeSpecLike, instead. * *

This type has been renamed to support future modularization of ScalaTest.

* *

This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

*/ @deprecated("The org.scalatest.fixture.FreeSpecLike trait has been moved and renamed. Please use org.scalatest.freespec.FixtureAnyFreeSpecLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type FreeSpecLike = org.scalatest.freespec.FixtureAnyFreeSpecLike /** * The name org.scalatest.fixture.FreeSpec has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.freespec.FixtureAnyFreeSpec, instead. * *

This type has been renamed to support future modularization of ScalaTest.

* *

This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

*/ @deprecated("The org.scalatest.fixture.FreeSpec trait has been moved and renamed. Please use org.scalatest.freespec.FixtureAnyFreeSpec instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type FreeSpec = org.scalatest.freespec.FixtureAnyFreeSpec // SKIP-SCALATESTNATIVE-START /** * The name org.scalatest.fixture.AsyncFreeSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.freespec.FixtureAsyncFreeSpecLike, instead. * *

This type has been renamed to support future modularization of ScalaTest.

* *

This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

*/ @deprecated("The org.scalatest.fixture.AsyncFreeSpecLike trait has been moved and renamed. Please use org.scalatest.freespec.FixtureAsyncFreeSpecLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type AsyncFreeSpecLike = org.scalatest.freespec.FixtureAsyncFreeSpecLike /** * The name org.scalatest.fixture.AsyncFreeSpec has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.freespec.FixtureAsyncFreeSpec, instead. * *

This type has been renamed to support future modularization of ScalaTest.

* *

This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

*/ @deprecated("The org.scalatest.fixture.AsyncFreeSpec trait has been moved and renamed. Please use org.scalatest.freespec.FixtureAsyncFreeSpec instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type AsyncFreeSpec = org.scalatest.freespec.FixtureAsyncFreeSpec // SKIP-SCALATESTNATIVE-END /** * The name org.scalatest.fixture.FlatSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.flatspec.FixtureAnyFlatSpecLike, instead. * *

This type has been renamed to support future modularization of ScalaTest.

* *

This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

*/ @deprecated("The org.scalatest.fixture.FlatSpecLike trait has been moved and renamed. Please use org.scalatest.flatspec.FixtureAnyFlatSpecLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type FlatSpecLike = org.scalatest.flatspec.FixtureAnyFlatSpecLike /** * The name org.scalatest.fixture.FlatSpec has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.flatspec.FixtureAnyFlatSpec, instead. * *

This type has been renamed to support future modularization of ScalaTest.

* *

This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

*/ @deprecated("The org.scalatest.fixture.FlatSpec trait has been moved and renamed. Please use org.scalatest.flatspec.FixtureAnyFlatSpec instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type FlatSpec = org.scalatest.flatspec.FixtureAnyFlatSpec // SKIP-SCALATESTNATIVE-START /** * The name org.scalatest.fixture.AsyncFlatSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.flatspec.FixtureAsyncFlatSpecLike, instead. * *

This type has been renamed to support future modularization of ScalaTest.

* *

This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

*/ @deprecated("The org.scalatest.fixture.AsyncFlatSpecLike trait has been moved and renamed. Please use org.scalatest.flatspec.FixtureAsyncFlatSpecLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type AsyncFlatSpecLike = org.scalatest.flatspec.FixtureAsyncFlatSpecLike /** * The name org.scalatest.fixture.AsyncFlatSpec has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.flatspec.FixtureAsyncFlatSpec, instead. * *

This type has been renamed to support future modularization of ScalaTest.

* *

This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

*/ @deprecated("The org.scalatest.fixture.AsyncFlatSpec trait has been moved and renamed. Please use org.scalatest.flatspec.FixtureAsyncFlatSpec instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type AsyncFlatSpec = org.scalatest.flatspec.FixtureAsyncFlatSpec // SKIP-SCALATESTNATIVE-END /** * The name org.scalatest.fixture.PropSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.propspec.FixtureAnyPropSpecLike, instead. * *

This type has been renamed to support future modularization of ScalaTest.

* *

This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

*/ @deprecated("The org.scalatest.fixture.PropSpecLike trait has been moved and renamed. Please use org.scalatest.flatspec.FixtureAnyPropSpecLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type PropSpecLike = org.scalatest.propspec.FixtureAnyPropSpecLike /** * The name org.scalatest.fixture.PropSpec has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.propspec.FixtureAnyPropSpec, instead. * *

This type has been renamed to support future modularization of ScalaTest.

* *

This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

*/ @deprecated("The org.scalatest.fixture.PropSpec trait has been moved and renamed. Please use org.scalatest.flatspec.FixtureAnyPropSpec instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type PropSpec = org.scalatest.propspec.FixtureAnyPropSpec /** * The name org.scalatest.fixture.WordSpec has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.wordspec.FixtureAnyWordSpec, instead. * *

This type has been renamed to support future modularization of ScalaTest.

* *

This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

*/ @deprecated("The org.scalatest.fixture.WordSpec trait has been moved and renamed. Please use org.scalatest.wordspec.FixtureAnyWordSpec instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type WordSpec = org.scalatest.wordspec.FixtureAnyWordSpec /** * The name org.scalatest.fixture.WordSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.wordspec.FixtureAnyWordSpecLike, instead. * *

This type has been renamed to support future modularization of ScalaTest.

* *

This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

*/ @deprecated("The org.scalatest.fixture.WordSpecLike trait has been moved and renamed. Please use org.scalatest.wordspec.FixtureAnyWordSpecLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type WordSpecLike = org.scalatest.wordspec.FixtureAnyWordSpecLike // SKIP-SCALATESTNATIVE-START /** * The name org.scalatest.fixture.AsyncWordSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.wordspec.FixtureAsyncWordSpecLike, instead. * *

This type has been renamed to support future modularization of ScalaTest.

* *

This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

*/ @deprecated("The org.scalatest.fixture.AsyncWordSpecLike trait has been moved and renamed. Please use org.scalatest.wordspec.FixtureAsyncWordSpecLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type AsyncWordSpecLike = org.scalatest.wordspec.FixtureAsyncWordSpecLike /** * The name org.scalatest.fixture.AsyncWordSpec has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.wordspec.FixtureAsyncWordSpec, instead. * *

This type has been renamed to support future modularization of ScalaTest.

* *

This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

*/ @deprecated("The org.scalatest.fixture.AsyncWordSpec trait has been moved and renamed. Please use org.scalatest.wordspec.FixtureAsyncWordSpec instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type AsyncWordSpec = org.scalatest.wordspec.FixtureAsyncWordSpec // SKIP-SCALATESTNATIVE-END // SKIP-SCALATESTJS,NATIVE-START /** * The name org.scalatest.fixture.AsyncTestRegistration has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.FixtureAsyncTestRegistration, instead. * *

This type has been renamed to support future modularization of ScalaTest.

* *

This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

*/ @deprecated("The org.scalatest.fixture.AsyncTestRegistration trait has been moved and renamed. Please use org.scalatest.FixtureAsyncTestRegistration instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type AsyncTestRegistration = org.scalatest.FixtureAsyncTestRegistration /** * The name org.scalatest.fixture.AsyncTestSuite has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.FixtureAsyncTestSuite, instead. * *

This type has been renamed to support future modularization of ScalaTest.

* *

This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

*/ @deprecated("The org.scalatest.fixture.AsyncTestSuite trait has been moved and renamed. Please use org.scalatest.FixtureAsyncTestSuite instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type AsyncTestSuite = org.scalatest.FixtureAsyncTestSuite // SKIP-SCALATESTJS,NATIVE-END /** * The name org.scalatest.fixture.Suite has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.FixtureSuite, instead. * *

This type has been renamed to support future modularization of ScalaTest.

* *

This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

*/ @deprecated("The org.scalatest.fixture.Suite trait has been moved and renamed. Please use org.scalatest.FixtureSuite instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type Suite = org.scalatest.FixtureSuite /** * The name org.scalatest.fixture.TestRegistration has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.FixtureTestRegistration, instead. * *

This type has been renamed to support future modularization of ScalaTest.

* *

This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

*/ @deprecated("The org.scalatest.fixture.TestRegistration trait has been moved and renamed. Please use org.scalatest.FixtureTestRegistration instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type TestRegistration = org.scalatest.FixtureTestRegistration /** * The name org.scalatest.fixture.TestSuite has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.FixtureTestSuite, instead. * *

This type has been renamed to support future modularization of ScalaTest.

* *

This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x.

*/ @deprecated("The org.scalatest.fixture.TestSuite trait has been moved and renamed. Please use org.scalatest.FixtureTestSuite instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type TestSuite = org.scalatest.FixtureTestSuite }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy