org.scalatest.verb.package.scala Maven / Gradle / Ivy
Show all versions of scalatest_2.11.0-M5 Show documentation
/*
* 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
package object verb {
/**
*
* This class has been moved to the org.scalatest.words
package. The deprecated type alias that has been left in its place will
* be removed in a future version of ScalaTest. Please change any uses of org.scalatest.verb.BehaveWord
to
* org.scalatest.words.BehaveWord
.
*
*/
@deprecated("Please use org.scalatest.words.BehaveWord instead.")
type BehaveWord = words.BehaveWord
/**
*
* This trait has been moved to the org.scalatest.words
package. The deprecated type alias that has been left in its place will
* be removed in a future version of ScalaTest. Please change any uses of org.scalatest.verb.CanVerb
to
* org.scalatest.words.CanVerb
.
*
*/
@deprecated("Please use org.scalatest.words.CanVerb instead.")
type CanVerb = words.CanVerb
/**
*
* This trait has been moved to the org.scalatest.words
package. The deprecated type alias that has been left in its place will
* be removed in a future version of ScalaTest. Please change any uses of org.scalatest.verb.MustVerb
to
* org.scalatest.words.MustVerb
.
*
*/
@deprecated("Please use org.scalatest.words.MustVerb instead.")
type MustVerb = words.MustVerb
/**
*
* This class has been moved to the org.scalatest.words
package. The deprecated type alias that has been left in its place will
* be removed in a future version of ScalaTest. Please change any uses of org.scalatest.verb.ResultOfAfterWordApplication
to
* org.scalatest.words.ResultOfAfterWordApplication
.
*
*/
@deprecated("Please use org.scalatest.words.ResultOfAfterWordApplication instead.")
type ResultOfAfterWordApplication = words.ResultOfAfterWordApplication
/**
*
* This class has been moved to the org.scalatest.words
package. The deprecated type alias that has been left in its place will
* be removed in a future version of ScalaTest. Please change any uses of org.scalatest.verb.ResultOfStringPassedToVerb
to
* org.scalatest.words.ResultOfStringPassedToVerb
.
*
*/
@deprecated("Please use org.scalatest.words.ResultOfStringPassedToVerb instead.")
type ResultOfStringPassedToVerb = words.ResultOfStringPassedToVerb
/**
*
* This class has been moved to the org.scalatest.words
package. The deprecated type alias that has been left in its place will
* be removed in a future version of ScalaTest. Please change any uses of org.scalatest.verb.ResultOfTaggedAsInvocation
to
* org.scalatest.words.ResultOfTaggedAsInvocation
.
*
*/
@deprecated("Please use org.scalatest.words.ResultOfTaggedAsInvocation instead.")
type ResultOfTaggedAsInvocation = words.ResultOfTaggedAsInvocation
/**
*
* This trait has been moved to the org.scalatest.words
package. The deprecated type alias that has been left in its place will
* be removed in a future version of ScalaTest. Please change any uses of org.scalatest.verb.ShouldVerb
to
* org.scalatest.words.ShouldVerb
.
*
*/
@deprecated("Please use org.scalatest.words.ShouldVerb instead.")
type ShouldVerb = words.ShouldVerb
/**
*
* This class has been moved to the org.scalatest.words
package. The deprecated type alias that has been left in its place will
* be removed in a future version of ScalaTest. Please change any uses of org.scalatest.verb.StringVerbBlockRegistration
to
* org.scalatest.words.StringVerbBlockRegistration
.
*
*/
@deprecated("Please use org.scalatest.words.StringVerbBlockRegistration instead.")
type StringVerbBlockRegistration = words.StringVerbBlockRegistration
}