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

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

/*
 * Copyright 2001-2013 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's main traits, classes, and other members, including members supporting ScalaTest's DSL for the Scala interpreter.
 */
package object scalatest {

   // SKIP-SCALATESTJS,NATIVE-START
  private val defaultShell = ShellImpl()

  /**
   * Returns a copy of this Shell with colorPassed configuration parameter set to true.
   */
  lazy val color: Shell = defaultShell.color

  /**
   * Returns a copy of this Shell with durationsPassed configuration parameter set to true.
   */
  lazy val durations: Shell = defaultShell.durations

  /**
   * Returns a copy of this Shell with shortStacksPassed configuration parameter set to true.
   */
  lazy val shortstacks: Shell = defaultShell.shortstacks

  /**
   * Returns a copy of this Shell with fullStacksPassed configuration parameter set to true.
   */
  lazy val fullstacks: Shell = defaultShell.fullstacks

  /**
   * Returns a copy of this Shell with statsPassed configuration parameter set to true.
   */
  lazy val stats: Shell = defaultShell.stats

  /**
   * Returns a copy of this Shell with colorPassed configuration parameter set to false.
   */
  lazy val nocolor: Shell = defaultShell.nocolor

  /**
   * Returns a copy of this Shell with durationsPassed configuration parameter set to false.
   */
  lazy val nodurations: Shell = defaultShell.nodurations

  /**
   * Returns a copy of this Shell with shortStacksPassed configuration parameter set to false.
   */
  lazy val nostacks: Shell = defaultShell.nostacks

  /**
   * Returns a copy of this Shell with statsPassed configuration parameter set to false.
   */
  lazy val nostats: Shell = defaultShell.nostats
  // SKIP-SCALATESTJS,NATIVE-END

  /**
   * The version number of ScalaTest.
   *
   * @return the ScalaTest version number.
   */
  val ScalaTestVersion: String = ScalaTestVersions.ScalaTestVersion

  private[scalatest] type Expectation = Fact

  /**
   * Marker trait that serves as the result type of assert, assume, and pending methods of
   * trait Assertions, which return its only instance, the Succeeded singleton, or throw
   * an exception that indicates a failed, canceled, or pending test.
   */
  type Assertion = org.scalatest.compatible.Assertion

  /**
   * The name org.scalatest.FunSuiteLike has been deprecated and will be removed in a future version of ScalaTest. Please use
   * its new name, org.scalatest.funsuite.AnyFunSuiteLike, 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.FunSuiteLike trait has been moved and renamed. Please use org.scalatest.funsuite.AnyFunSuiteLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type FunSuiteLike = funsuite.AnyFunSuiteLike /** * The name org.scalatest.FunSuite has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.funsuite.AnyFunSuite, 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.FunSuite trait has been moved and renamed. Please use org.scalatest.funsuite.AnyFunSuite instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type FunSuite = funsuite.AnyFunSuite // SKIP-SCALATESTNATIVE-START /** * The name org.scalatest.AsyncFunSuiteLike has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.funsuite.AsyncFunSuiteLike, 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.AsyncFunSuiteLike trait has been moved and renamed. Please use org.scalatest.funsuite.AsyncFunSuiteLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type AsyncFunSuiteLike = funsuite.AsyncFunSuiteLike /** * The name org.scalatest.AsyncFunSuite has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.funsuite.AsyncFunSuite, 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.AsyncFunSuite trait has been moved and renamed. Please use org.scalatest.funsuite.AsyncFunSuite instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type AsyncFunSuite = funsuite.AsyncFunSuite // SKIP-SCALATESTNATIVE-END /** * The name org.scalatest.FeatureSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.featurespec.AnyFeatureSpecLike, 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.FeatureSpecLike trait has been moved and renamed. Please use org.scalatest.featurespec.AnyFeatureSpecLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type FeatureSpecLike = featurespec.AnyFeatureSpecLike /** * The name org.scalatest.FeatureSpec has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.featurespec.AnyFeatureSpec, 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.FeatureSpec trait has been moved and renamed. Please use org.scalatest.featurespec.AnyFeatureSpec instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type FeatureSpec = featurespec.AnyFeatureSpec // SKIP-SCALATESTNATIVE-START /** * The name org.scalatest.AsyncFeatureSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.featurespec.AsyncFeatureSpecLike, 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.AsyncFeatureSpecLike trait has been moved and renamed. Please use org.scalatest.featurespec.AsyncFeatureSpecLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type AsyncFeatureSpecLike = featurespec.AsyncFeatureSpecLike /** * The name org.scalatest.AsyncFeatureSpec has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.featurespec.AsyncFeatureSpec, 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.AsyncFeatureSpec trait has been moved and renamed. Please use org.scalatest.featurespec.AsyncFeatureSpec instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type AsyncFeatureSpec = featurespec.AsyncFeatureSpec // SKIP-SCALATESTNATIVE-END /** * The name org.scalatest.FunSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.funspec.AnyFunSpecLike, 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.FunSpecLike trait has been moved and renamed. Please use org.scalatest.funspec.AnyFunSpecLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type FunSpecLike = funspec.AnyFunSpecLike /** * The name org.scalatest.FunSpec has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.funspec.AnyFunSpec, 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.FunSpec trait has been moved and renamed. Please use org.scalatest.funspec.AnyFunSpec instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type FunSpec = funspec.AnyFunSpec // SKIP-SCALATESTNATIVE-START /** * The name org.scalatest.AsyncFunSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.funspec.AsyncFunSpecLike, 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.AsyncFunSpecLike trait has been moved and renamed. Please use org.scalatest.funspec.AsyncFunSpecLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type AsyncFunSpecLike = funspec.AsyncFunSpecLike /** * The name org.scalatest.AsyncFunSpec has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.funspec.AsyncFunSpec, 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.AsyncFunSpec trait has been moved and renamed. Please use org.scalatest.funspec.AsyncFunSpec instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type AsyncFunSpec = funspec.AsyncFunSpec // SKIP-SCALATESTNATIVE-END /** * The name org.scalatest.FreeSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.freespec.AnyFreeSpecLike, 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.FreeSpecLike trait has been moved and renamed. Please use org.scalatest.freespec.AnyFreeSpecLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type FreeSpecLike = freespec.AnyFreeSpecLike /** * The name org.scalatest.FreeSpec has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.freespec.AnyFreeSpec, 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.FreeSpec trait has been moved and renamed. Please use org.scalatest.freespec.AnyFreeSpec instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type FreeSpec = freespec.AnyFreeSpec // SKIP-SCALATESTNATIVE-START /** * The name org.scalatest.AsyncFreeSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.freespec.AsyncFreeSpecLike, 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.AsyncFreeSpecLike trait has been moved and renamed. Please use org.scalatest.freespec.AsyncFreeSpecLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type AsyncFreeSpecLike = freespec.AsyncFreeSpecLike /** * The name org.scalatest.AsyncFreeSpec has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.freespec.AsyncFreeSpec, 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.AsyncFreeSpec trait has been moved and renamed. Please use org.scalatest.freespec.AsyncFreeSpec instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type AsyncFreeSpec = freespec.AsyncFreeSpec // SKIP-SCALATESTNATIVE-END /** * The name org.scalatest.FlatSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.flatspec.AnyFlatSpecLike, 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.FlatSpecLike trait has been moved and renamed. Please use org.scalatest.flatspec.AnyFlatSpecLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type FlatSpecLike = flatspec.AnyFlatSpecLike /** * The name org.scalatest.FlatSpec has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.flatspec.AnyFlatSpec, 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.FlatSpec trait has been moved and renamed. Please use org.scalatest.flatspec.AnyFlatSpec instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type FlatSpec = flatspec.AnyFlatSpec /** * The name org.scalatest.AsyncFlatSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.flatspec.AsyncFlatSpecLike, 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.

*/ // SKIP-SCALATESTNATIVE-START @deprecated("The org.scalatest.AsyncFlatSpecLike trait has been moved and renamed. Please use org.scalatest.flatspec.AsyncFlatSpecLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type AsyncFlatSpecLike = flatspec.AsyncFlatSpecLike /** * The name org.scalatest.AsyncFlatSpec has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.flatspec.AsyncFlatSpec, 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.AsyncFlatSpec trait has been moved and renamed. Please use org.scalatest.flatspec.AsyncFlatSpec instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type AsyncFlatSpec = flatspec.AsyncFlatSpec // SKIP-SCALATESTNATIVE-END /** * The name org.scalatest.PropSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.propspec.AnyPropSpecLike, 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.PropSpecLike trait has been moved and renamed. Please use org.scalatest.propspec.AnyPropSpecLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type PropSpecLike = propspec.AnyPropSpecLike /** * The name org.scalatest.PropSpec has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.propspec.AnyPropSpec, 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.PropSpec trait has been moved and renamed. Please use org.scalatest.propspec.AnyPropSpec instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type PropSpec = propspec.AnyPropSpec /** * The name org.scalatest.WordSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.wordspec.AnyWordSpecLike, 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.WordSpecLike trait has been moved and renamed. Please use org.scalatest.wordspec.AnyWordSpecLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type WordSpecLike = wordspec.AnyWordSpecLike /** * The name org.scalatest.WordSpec has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.wordspec.AnyWordSpec, 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.WordSpec trait has been moved and renamed. Please use org.scalatest.wordspec.AnyWordSpec instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type WordSpec = wordspec.AnyWordSpec // SKIP-SCALATESTNATIVE-START /** * The name org.scalatest.AsyncWordSpecLike has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.wordspec.AsyncWordSpecLike, 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.AsyncWordSpecLike trait has been moved and renamed. Please use org.scalatest.wordspec.AsyncWordSpecLike instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type AsyncWordSpecLike = wordspec.AsyncWordSpecLike /** * The name org.scalatest.AsyncWordSpec has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.wordspec.AsyncWordSpec, 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.AsyncWordSpec trait has been moved and renamed. Please use org.scalatest.wordspec.AsyncWordSpec instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type AsyncWordSpec = wordspec.AsyncWordSpec // SKIP-SCALATESTNATIVE-END /** * The name org.scalatest.Matchers has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.matchers.should.Matchers, 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.Matchers trait has been moved and renamed. Please use org.scalatest.matchers.should.Matchers instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type Matchers = matchers.should.Matchers /** * The name org.scalatest.Matchers has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.matchers.should.Matchers, 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.Matchers trait has been moved and renamed. Please use org.scalatest.matchers.should.Matchers instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") val Matchers = matchers.should.Matchers /** * The name org.scalatest.MustMatchers has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.matchers.must.Matchers, 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.MustMatchers trait has been moved and renamed. Please use org.scalatest.matchers.must.Matchers instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type MustMatchers = matchers.must.Matchers /** * The name org.scalatest.MustMatchers has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.matchers.must.Matchers, 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.MustMatchers trait has been moved and renamed. Please use org.scalatest.matchers.must.Matchers instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") val MustMatchers = matchers.must.Matchers /** * The name org.scalatest.DiagrammedAssertions has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.diagrams.Diagrams, instead. * *

This type has been renamed to suport 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.DiagrammedAssertions trait has been moved and renamed. Please use org.scalatest.diagrams.Diagrams instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") type DiagrammedAssertions = diagrams.Diagrams /** * The name org.scalatest.DiagrammedAssertions has been deprecated and will be removed in a future version of ScalaTest. Please use * its new name, org.scalatest.diagrams.Diagrams, instead. * *

This type has been renamed to suport 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.DiagrammedAssertions object has been moved and renamed. Please use org.scalatest.diagrams.Diagrams instead. This can be rewritten automatically with autofix: https://github.com/scalatest/autofix/tree/master/3.1.x", "3.1.0") val DiagrammedAssertions = diagrams.Diagrams }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy