org.scalatest.prop.package.scala Maven / Gradle / Ivy
Show all versions of scalatest_2.11.0-M3 Show documentation
/*
* Copyright 2001-2011 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 to hold deprecated type aliases for exception classes moved from org.scalatest.prop to org.scalatest.exceptions.
*/
package object prop {
/**
*
* This class has been moved to the org.scalatest.exceptions
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.prop.DiscardedEvaluationException
to org.scalatest.exceptions.DiscardedEvaluationException
.
*
*/
@deprecated("Please use org.scalatest.exceptions.TestRegistrationClosedException instead.")
type DiscardedEvaluationException = exceptions.DiscardedEvaluationException
/**
*
* This class has been moved to the org.scalatest.exceptions
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.prop.GeneratorDrivenPropertyCheckFailedException
to org.scalatest.exceptions.GeneratorDrivenPropertyCheckFailedException
.
*
*/
@deprecated("Please use org.scalatest.exceptions.TestRegistrationClosedException instead.")
type GeneratorDrivenPropertyCheckFailedException = exceptions.GeneratorDrivenPropertyCheckFailedException
/**
*
* This class has been moved to the org.scalatest.exceptions
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.prop.PropertyCheckFailedException
to org.scalatest.exceptions.PropertyCheckFailedException
.
*
*/
@deprecated("Please use org.scalatest.exceptions.TestRegistrationClosedException instead.")
type PropertyCheckFailedException = exceptions.PropertyCheckFailedException
/**
*
* This exception class has been deprecated and will be removed in a future version of ScalaTest. Please
* change uses of this class to use org.scalatest.exceptions.GeneratorDrivenPropertyCheckFailedException
instead.
*
*/
@deprecated("Please use org.scalatest.exceptions.TestRegistrationClosedException instead.")
type PropertyTestFailedException = exceptions.GeneratorDrivenPropertyCheckFailedException
/**
*
* This class has been moved to the org.scalatest.exceptions
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.prop.TableDrivenPropertyCheckFailedException
to org.scalatest.exceptions.TableDrivenPropertyCheckFailedException
.
*
*/
@deprecated("Please use org.scalatest.exceptions.TestRegistrationClosedException instead.")
type TableDrivenPropertyCheckFailedException = exceptions.TableDrivenPropertyCheckFailedException
}