Class

org.scalatest.matchers.dsl

NotWord

Related Doc: package dsl

Permalink

final class NotWord extends AnyRef

This class is part of the ScalaTest matchers DSL. Please see the documentation for Matchers for an overview of the matchers DSL.

Source
NotWord.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NotWord
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new NotWord()

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def apply(existWord: ExistWord): ResultOfNotExist

    Permalink

    This method enables syntax such as the following:

    This method enables syntax such as the following:

    file should not (exist)
                ^
    

  5. def apply[S](beMatcher: BeMatcher[S]): BeMatcher[S]

    Permalink

    This method enables any BeMatcher to be negated by passing it to not.

    This method enables any BeMatcher to be negated by passing it to not. For example, if you have a BeMatcher[Int] called odd, which matches Ints that are odd, you can negate it to get a BeMatcher[Int] that matches even Ints, like this:

    val even = not (odd)
                   ^
    

    In addition, this method enables you to negate a BeMatcher at its point of use, like this:

    num should be (not (odd))
    

    Nevertheless, in such as case it would be more idiomatic to write:

    num should not be (odd)
    

  6. def apply[S, TYPECLASS1[_], TYPECLASS2[_]](matcherGen2: MatcherFactory2[S, TYPECLASS1, TYPECLASS2]): MatcherFactory2[S, TYPECLASS1, TYPECLASS2]

    Permalink
  7. def apply[S, TYPECLASS[_]](matcherGen1: MatcherFactory1[S, TYPECLASS]): MatcherFactory1[S, TYPECLASS]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    hasNoSize should not { have size (2) and equal (hasNoSize) }
                         ^
    

  8. def apply[S](matcher: Matcher[S]): Matcher[S]

    Permalink

    This method enables the following syntax, where tempFile, for example, refers to a java.io.File and exist is a Matcher[java.io.File]:

    This method enables the following syntax, where tempFile, for example, refers to a java.io.File and exist is a Matcher[java.io.File]:

    tempFile should not (exist)
                        ^
    

  9. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  10. macro def be(anType: ResultOfAnTypeInvocation[_]): Matcher[Any]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    result should (not be an [Book] and not be sorted)
                       ^
    

  11. macro def be(aType: ResultOfATypeInvocation[_]): Matcher[Any]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    result should (not be a [Book] and not be sorted)
                       ^
    

  12. def be(definedWord: DefinedWord): MatcherFactory1[Any, Definition]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    result should (not be defined and not equal something)
                       ^
    

  13. def be(emptyWord: EmptyWord): MatcherFactory1[Any, Emptiness]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    nonEmptyList should (not be empty and not equal emptyList)
                             ^
    

  14. def be(writableWord: WritableWord): MatcherFactory1[Any, Writability]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    fraction should (not be writable and not be writableFile)
                         ^
    

  15. def be(readableWord: ReadableWord): MatcherFactory1[Any, Readability]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    fraction should (not be readable and not equal readableFile)
                         ^
    

  16. def be[T](sortedWord: SortedWord): MatcherFactory1[Any, Sortable]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    fraction should (not be sorted and not be sorted)
                         ^
    

  17. def be(right: Any): Matcher[Any]

    Permalink

    This method enables be to be used for inequality comparison.

    This method enables be to be used for inequality comparison. Here are some examples:

    result should not be (None)
                         ^
    result should not be (Some(1))
                         ^
    result should not be (true)
                         ^
    result should not be (false)
                         ^
    sum should not be (19)
                      ^
    

  18. def be[A, U <: PartialFunction[A, _]](resultOfDefinedAt: ResultOfDefinedAt[A]): Matcher[U]

    Permalink

    This method enables the following syntax, where fraction is a PartialFunction:

    This method enables the following syntax, where fraction is a PartialFunction:

    fraction should (not be definedAt (8) and not be definedAt (0))
                         ^
    

  19. def be[U](spread: Spread[U]): Matcher[U]

    Permalink

    This method enables the following syntax for the "primitive" numeric types:

    This method enables the following syntax for the "primitive" numeric types:

    sevenDotOh should ((not be (17.1 +- 0.2)) and (not be (27.1 +- 0.2)))
                            ^
    

  20. def be[T <: AnyRef](resultOfTheSameInstanceAsApplication: ResultOfTheSameInstanceAsApplication): Matcher[T]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    myFish should (not be theSameInstanceAs (redFish) and not be theSameInstanceAs (blueFish))
                       ^
    

  21. def be[T](resultOfAnWordApplication: ResultOfAnWordToAnMatcherApplication[T]): Matcher[T]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    result should (not be a (passedMarks) and be a (validMarks)))
                       ^
    

  22. def be[T <: AnyRef](resultOfAnWordApplication: ResultOfAnWordToBePropertyMatcherApplication[T]): Matcher[T]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    myFile should (not be an (directory) and not be an (directory))
                       ^
    

  23. def be[T](resultOfAWordApplication: ResultOfAWordToAMatcherApplication[T]): Matcher[T]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    result should (not be a (passedMarks) and be a (validMarks)))
                       ^
    

  24. def be[T <: AnyRef](resultOfAWordApplication: ResultOfAWordToBePropertyMatcherApplication[T]): Matcher[T]

    Permalink

    This method enables the following syntax, where notSoSecretFile, for example, refers to a java.io.File and directory is a BePropertyMatcher[java.io.File]:

    This method enables the following syntax, where notSoSecretFile, for example, refers to a java.io.File and directory is a BePropertyMatcher[java.io.File]:

    notSoSecretFile should (not be a (directory) and have ('name ("passwords.txt")))
                                ^
    

  25. def be[T <: AnyRef](bePropertyMatcher: BePropertyMatcher[T]): Matcher[T]

    Permalink

    This method enables the following syntax, where tempFile, for example, refers to a java.io.File and hidden is a BePropertyMatcher[java.io.File]:

    This method enables the following syntax, where tempFile, for example, refers to a java.io.File and hidden is a BePropertyMatcher[java.io.File]:

    tempFile should (not be (hidden) and have ('name ("temp.txt")))
                       ^
    

  26. def be[T](resultOfGreaterThanOrEqualToComparison: ResultOfGreaterThanOrEqualToComparison[T]): Matcher[T]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    num should (not be >= (10) and not be < (7))
                    ^
    

  27. def be[T](resultOfLessThanOrEqualToComparison: ResultOfLessThanOrEqualToComparison[T]): Matcher[T]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    num should (not be <= (7) and not be > (10))
                    ^
    

  28. def be[T](resultOfGreaterThanComparison: ResultOfGreaterThanComparison[T]): Matcher[T]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    num should (not be > (10) and not be < (7))
                    ^
    

  29. def be[T](resultOfLessThanComparison: ResultOfLessThanComparison[T]): Matcher[T]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    num should (not be < (7) and not be > (10))
                    ^
    

  30. def be(o: Null): Matcher[AnyRef]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    map should (not be (null))
                    ^
    

  31. def be[T](beMatcher: BeMatcher[T]): Matcher[T]

    Permalink

    This method enables the following syntax, where, for example, num is an Int and odd of type BeMatcher[Int]:

    This method enables the following syntax, where, for example, num is an Int and odd of type BeMatcher[Int]:

    num should (not be (odd) and be <= (8))
                    ^
    

  32. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. def contain(resultOfValueWordApplication: ResultOfValueWordApplication): MatcherFactory1[Any, ValueMapping]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    Map("one" -> 1, "two" -> 2) should (not contain value (3))
                                            ^
    

  34. def contain(resultOfKeyWordApplication: ResultOfKeyWordApplication): MatcherFactory1[Any, KeyMapping]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    Map("one" -> 1, "two" -> 2) should (not contain key ("three"))
                                            ^
    

  35. def contain(atMostOneElementOf: ResultOfAtMostOneElementOfApplication): MatcherFactory1[Any, Aggregating]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    Array(1, 2) should (not contain atMostOneElementOf (List(5)) and not contain (3))
                            ^
    

  36. def contain[T](atMostOneOf: ResultOfAtMostOneOfApplication)(implicit prettifier: Prettifier): MatcherFactory1[Any, Aggregating]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    Array(1, 2) should (not contain atMostOneOf (5) and not contain (3))
                            ^
    

  37. def contain(inOrderElementsOf: ResultOfInOrderElementsOfApplication): MatcherFactory1[Any, Sequencing]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    Array(1, 2) should (not contain inOrderElementsOf (List(1, 2, 3)) and not contain (3))
                                    ^
    

  38. def contain[T](inOrder: ResultOfInOrderApplication)(implicit prettifier: Prettifier): MatcherFactory1[Any, Sequencing]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    Array(1, 2) should (not contain inOrder (1, 2, 3) and not contain (3))
                                    ^
    

  39. def contain(allElementsOf: ResultOfAllElementsOfApplication): MatcherFactory1[Any, Aggregating]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    Array(1, 2) should (not contain allOf (1, 2, 3) and not contain (3))
                                    ^
    

  40. def contain[T](allOf: ResultOfAllOfApplication)(implicit prettifier: Prettifier): MatcherFactory1[Any, Aggregating]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    Array(1, 2) should (not contain allOf (1, 2, 3) and not contain (3))
                                    ^
    

  41. def contain[T](inOrderOnly: ResultOfInOrderOnlyApplication)(implicit prettifier: Prettifier): MatcherFactory1[Any, Sequencing]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    Array(1, 2) should (not contain only (1, 2, 3) and not contain (3))
                                    ^
    

  42. def contain[T](only: ResultOfOnlyApplication)(implicit prettifier: Prettifier): MatcherFactory1[Any, Aggregating]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    Array(1, 2) should (not contain only (1, 2, 3) and not contain (3))
                                    ^
    

  43. def contain[T](theSameElementInOrderAs: ResultOfTheSameElementsInOrderAsApplication): MatcherFactory1[Any, Sequencing]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    Array(1, 2) should (not contain theSameElementsInOrderAs (1, 2, 3) and not contain (3))
                                    ^
    

  44. def contain[T](theSameElementAs: ResultOfTheSameElementsAsApplication): MatcherFactory1[Any, Aggregating]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    Array(1, 2) should (not contain theSameElementsAs (1, 2, 3) and not contain (3))
                                    ^
    

  45. def contain[T](noElementsOf: ResultOfNoElementsOfApplication): MatcherFactory1[Any, Containing]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    Array(1, 2) should (not contain noElementsOf (5, 6, 7))
                            ^
    

  46. def contain[T](noneOf: ResultOfNoneOfApplication)(implicit prettifier: Prettifier): MatcherFactory1[Any, Containing]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    Array(1, 2) should (not contain noneOf (5, 6, 7))
                            ^
    

  47. def contain[T](atLeastOneElementOf: ResultOfAtLeastOneElementOfApplication): MatcherFactory1[Any, Aggregating]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    Array(1, 2) should (not contain atLeastOneElementOf List(1, 2, 3))
                            ^
    

  48. def contain[T](atLeastOneOf: ResultOfAtLeastOneOfApplication)(implicit prettifier: Prettifier): MatcherFactory1[Any, Aggregating]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    Array(1, 2) should (not contain (5) and not contain (3))
                            ^
    

  49. def contain[T](oneElementOf: ResultOfOneElementOfApplication): MatcherFactory1[Any, Containing]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    Array(1, 2) should (not contain oneElementOf (List(5, 6, 7)))
                            ^
    

  50. def contain[T](oneOf: ResultOfOneOfApplication)(implicit prettifier: Prettifier): MatcherFactory1[Any, Containing]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    Array(1, 2) should (not contain oneOf (5, 6, 7))
                            ^
    

  51. def contain[T](expectedElement: T): MatcherFactory1[Any, Containing]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    Array(1, 2) should (not contain (5) and not contain (3))
                            ^
    

  52. def contain(nullValue: Null): MatcherFactory1[Any, Containing]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    list should (not contain (null))
                     ^
    

  53. def endWith(expectedSubstring: String): Matcher[String]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    string should (not endWith ("blue") and not endWith ("1.7"))
                       ^
    

  54. def endWith(resultOfRegexWordApplication: ResultOfRegexWordApplication): Matcher[String]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    string should (not endWith regex ("wor.d") and not startWith regex ("Hel*o"))
                       ^
    

  55. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  56. def equal(o: Null): Matcher[AnyRef]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    map should (not equal (null))
                    ^
    

  57. def equal[U](spread: Spread[U]): Matcher[U]

    Permalink

    This method enables the following syntax for the "primitive" numeric types:

    This method enables the following syntax for the "primitive" numeric types:

    sevenDotOh should ((not equal (17.1 +- 0.2)) and (not equal (27.1 +- 0.2)))
                            ^
    

  58. def equal(right: Any): MatcherFactory1[Any, Equality]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    num should (not equal (7) and be < (9))
                    ^
    

  59. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  60. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  61. def fullyMatch(resultOfRegexWordApplication: ResultOfRegexWordApplication): Matcher[String]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    string should (not fullyMatch regex ("Hel*o") and not include ("orld"))
                       ^
    

  62. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  63. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  64. def have[T](firstPropertyMatcher: HavePropertyMatcher[T, _], propertyMatchers: HavePropertyMatcher[T, _]*): Matcher[T]

    Permalink

    This method enables the following syntax, where, for example, book is of type Book and title and author are both of type HavePropertyMatcher[Book, String]:

    This method enables the following syntax, where, for example, book is of type Book and title and author are both of type HavePropertyMatcher[Book, String]:

    book should (not have (title ("Moby Dick")) and (not have (author ("Melville"))))
                     ^
    

  65. def have(resultOfMessageWordApplication: ResultOfMessageWordApplication): MatcherFactory1[Any, Messaging]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    result should (not have message ("Message from Mars!") and not have message ("Message from Mars!"))
                       ^
    

  66. def have(resultOfSizeWordApplication: ResultOfSizeWordApplication): MatcherFactory1[Any, Size]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    Array(1, 2) should (not have size (5) and not have size (3))
                            ^
    

  67. def have(resultOfLengthWordApplication: ResultOfLengthWordApplication): MatcherFactory1[Any, Length]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    Array(1, 2) should (not have length (5) and not have length (3))
                            ^
    

  68. def include(expectedSubstring: String): Matcher[String]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    string should (not include ("cat") and not include ("1.7"))
                       ^
    

  69. def include(resultOfRegexWordApplication: ResultOfRegexWordApplication): Matcher[String]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    string should (not include regex ("Hel.o") and not include regex ("""(-)?(\d+)(\.\d*)?"""))
                       ^
    

  70. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  71. macro def matchPattern(right: PartialFunction[Any, _]): Matcher[Any]

    Permalink

    This method enables the following syntax, where, for example, num is an Int and odd of type BeMatcher[Int]:

    This method enables the following syntax, where, for example, num is an Int and odd of type BeMatcher[Int]:

    result should (not matchPattern { case Person("Bob", _)} and equal (result2))
                       ^
    

  72. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  73. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  74. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  75. def startWith(expectedSubstring: String): Matcher[String]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    string should ((not startWith ("red")) and (not startWith ("1.7")))
                        ^
    

  76. def startWith(resultOfRegexWordApplication: ResultOfRegexWordApplication): Matcher[String]

    Permalink

    This method enables the following syntax:

    This method enables the following syntax:

    string should (not startWith regex ("hel*o") and not endWith regex ("wor.d"))
                       ^
    

  77. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  78. def toString(): String

    Permalink

    Overrides toString to return "not"

    Overrides toString to return "not"

    Definition Classes
    NotWord → AnyRef → Any
  79. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  80. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  81. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def be(tripleEqualsInvocation: TripleEqualsInvocation[_])(implicit pos: Position): Matcher[Any]

    Permalink

    The deprecation period for the "be ===" syntax has expired, and the syntax will now throw NotAllowedException. Please use should equal, should ===, shouldEqual, should be, or shouldBe instead.

    The deprecation period for the "be ===" syntax has expired, and the syntax will now throw NotAllowedException. Please use should equal, should ===, shouldEqual, should be, or shouldBe instead.

    Note: usually syntax will be removed after its deprecation period. This was left in because otherwise the syntax could in some cases still compile, but silently wouldn't work.

    Annotations
    @deprecated
    Deprecated

    The deprecation period for the be === syntax has expired. Please use should equal, should ===, shouldEqual, should be, or shouldBe instead.

Inherited from AnyRef

Inherited from Any

Ungrouped