org.scalatest.words

NotWord

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
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new NotWord()

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def apply(existWord: ExistWord): ResultOfNotExist

    This method enables syntax such as the following:

    This method enables syntax such as the following:

    file should not (exist)
                ^
    

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

    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)
    

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

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

    This method enables the following syntax:

    This method enables the following syntax:

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

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

    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)
                        ^
    

  11. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  12. def be(anType: ResultOfAnTypeInvocation[_]): Matcher[Any]

    This method enables the following syntax:

    This method enables the following syntax:

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

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

    This method enables the following syntax:

    This method enables the following syntax:

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

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

    This method enables the following syntax:

    This method enables the following syntax:

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

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

    This method enables the following syntax:

    This method enables the following syntax:

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

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

    This method enables the following syntax:

    This method enables the following syntax:

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

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

    This method enables the following syntax:

    This method enables the following syntax:

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

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

    This method enables the following syntax:

    This method enables the following syntax:

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

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

    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)
                      ^
    

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

    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))
                         ^
    

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

    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 plusOrMinus 0.2)) and (not be (27.1 plusOrMinus 0.2)))
                            ^
    

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

    This method enables the following syntax:

    This method enables the following syntax:

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

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

    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](resultOfAnWordApplication: ResultOfAnWordToBePropertyMatcherApplication[T]): Matcher[T]

    This method enables the following syntax:

    This method enables the following syntax:

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

  25. def be[T <: AnyRef](resultOfAnWordApplication: ResultOfAnWordToSymbolApplication): Matcher[T]

    This method enables the following syntax:

    This method enables the following syntax:

    isNotAppleMock should (not be an ('apple) and not be ('rotten))
                               ^
    

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

    This method enables the following syntax:

    This method enables the following syntax:

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

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

    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")))
                                ^
    

  28. def be[T <: AnyRef](resultOfAWordApplication: ResultOfAWordToSymbolApplication): Matcher[T]

    This method enables the following syntax:

    This method enables the following syntax:

    isNotFileMock should (not be a ('file) and have ('name ("temp.txt"))))
                              ^
    

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

    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")))
                       ^
    

  30. def be[T <: AnyRef](symbol: Symbol): Matcher[T]

    This method enables the following syntax:

    This method enables the following syntax:

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

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

    This method enables the following syntax:

    This method enables the following syntax:

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

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

    This method enables the following syntax:

    This method enables the following syntax:

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

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

    This method enables the following syntax:

    This method enables the following syntax:

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

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

    This method enables the following syntax:

    This method enables the following syntax:

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

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

    This method enables the following syntax:

    This method enables the following syntax:

    map should (not be (null))
                    ^
    

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

    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))
                    ^
    

  37. def clone(): AnyRef

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

    This method enables the following syntax:

    This method enables the following syntax:

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

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

    This method enables the following syntax:

    This method enables the following syntax:

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

  40. def contain[T](atMostOneOf: ResultOfAtMostOneOfApplication): MatcherFactory1[Any, Aggregating]

    This method enables the following syntax:

    This method enables the following syntax:

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

  41. def contain[T](inOrder: ResultOfInOrderApplication): MatcherFactory1[Any, Sequencing]

    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))
                                    ^
    

  42. def contain[T](allOf: ResultOfAllOfApplication): MatcherFactory1[Any, Aggregating]

    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))
                                    ^
    

  43. def contain[T](inOrderOnly: ResultOfInOrderOnlyApplication): MatcherFactory1[Any, Sequencing]

    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))
                                    ^
    

  44. def contain[T](only: ResultOfOnlyApplication): MatcherFactory1[Any, Aggregating]

    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))
                                    ^
    

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

    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))
                                    ^
    

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

    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))
                                    ^
    

  47. def contain[T](noneOf: ResultOfNoneOfApplication): MatcherFactory1[Any, Containing]

    This method enables the following syntax:

    This method enables the following syntax:

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

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

    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](oneOf: ResultOfOneOfApplication): MatcherFactory1[Any, Containing]

    This method enables the following syntax:

    This method enables the following syntax:

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

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

    This method enables the following syntax:

    This method enables the following syntax:

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

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

    This method enables the following syntax:

    This method enables the following syntax:

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

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

    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"))
                       ^
    

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

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

    This method enables the following syntax:

    This method enables the following syntax:

    map should (not equal (null))
                    ^
    

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

    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 plusOrMinus 0.2)) and (not equal (27.1 plusOrMinus 0.2)))
                            ^
    

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

    This method enables the following syntax:

    This method enables the following syntax:

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

  57. def equals(arg0: Any): Boolean

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

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

    This method enables the following syntax:

    This method enables the following syntax:

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

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

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

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

    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"))))
                     ^
    

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

    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!"))
                       ^
    

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

    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))
                            ^
    

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

    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))
                            ^
    

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

    This method enables the following syntax:

    This method enables the following syntax:

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

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

    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*)?"""))
                       ^
    

  68. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  69. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  70. final def notify(): Unit

    Definition Classes
    AnyRef
  71. final def notifyAll(): Unit

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

    This method enables the following syntax:

    This method enables the following syntax:

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

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

    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"))
                       ^
    

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

    Definition Classes
    AnyRef
  75. def toString(): String

    Overrides toString to return "not"

    Overrides toString to return "not"

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Deprecated Value Members

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

    The should be === syntax has been deprecated and will be removed in a future version of ScalaTest. Please use should equal, should ===, shouldEqual, should be, or shouldBe instead. Note, the reason this was deprecated was so that === would mean only one thing in ScalaTest: a customizable, type- checkable equality comparison.

    The should be === syntax has been deprecated and will be removed in a future version of ScalaTest. Please use should equal, should ===, shouldEqual, should be, or shouldBe instead. Note, the reason this was deprecated was so that === would mean only one thing in ScalaTest: a customizable, type- checkable equality comparison.

    This method enables the following syntax:

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

    Annotations
    @deprecated
    Deprecated

    The should be === syntax has been deprecated. Please use should equal, should ===, shouldEqual, should be, or shouldBe instead.

Inherited from AnyRef

Inherited from Any

Ungrouped