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

org.specs2.matcher.ShouldExpectable.scala Maven / Gradle / Ivy

There is a newer version: 3.7
Show newest version
package org.specs2
package matcher

/**
 * This kind of expectable can be followed by the verb should to apply a matcher:
 * 
 * `1 should beEqualTo(1)`
 * 
 * For convenience, several shouldMatcher methods have also been defined as shortcuts to equivalent:
 * 
 * `a should matcher`
 */
class ShouldExpectable[T] private[specs2] (tm: () => T) extends Expectable[T](tm){
  def should(m: =>Matcher[T])      = applyMatcher(m)
  def shouldEqual(other: =>Any)    = applyMatcher(new BeEqualTo(other))
  def shouldNotEqual(other: =>Any) = applyMatcher(new BeEqualTo(other).not)
  def should_==(other: =>Any)      = applyMatcher(new BeEqualTo(other))
  def should_!=(other: =>Any)      = applyMatcher(new BeEqualTo(other).not)
}
object ShouldExpectable {
  def apply[T](t: =>T) = new ShouldExpectable(() => t)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy