org.scalatest.matchers.MustMatchers

ResultOfCollectedString

final class ResultOfCollectedString extends ResultOfCollectedAny[String]

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

Linear Supertypes
ResultOfCollectedAny[String], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ResultOfCollectedString
  2. ResultOfCollectedAny
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ResultOfCollectedString(collected: Collected, xs: GenTraversable[String])

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. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  8. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  11. final def getClass(): Class[_]

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

    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  14. def must(fullyMatchWord: FullyMatchWord): ResultOfFullyMatchWordForCollectedString

    This method enables syntax such as the following:

    This method enables syntax such as the following:

    all(string) must fullyMatch regex ("""(-)?(\d+)(\.\d*)?""")
                ^
    

  15. def must(includeWord: IncludeWord): ResultOfIncludeWordForCollectedString

    This method enables syntax such as the following:

    This method enables syntax such as the following:

    all(string) must include regex ("wo.ld")
                ^
    

  16. def must(endWithWord: EndWithWord): ResultOfEndWithWordForCollectedString

    This method enables syntax such as the following:

    This method enables syntax such as the following:

    all(string) must endWith regex ("wo.ld")
                ^
    

  17. def must(startWithWord: StartWithWord): ResultOfStartWithWordForCollectedString

    This method enables syntax such as the following:

    This method enables syntax such as the following:

    all(string) must startWith regex ("Hel*o")
                ^
    

  18. def must(notWord: NotWord): ResultOfNotWordForCollectedString

    This method enables syntax such as the following:

    This method enables syntax such as the following:

    all(string) must not have length (3)
                ^
    

    Definition Classes
    ResultOfCollectedStringResultOfCollectedAny
  19. def must(notExist: ResultOfNotExist)(implicit existence: Existence[String]): Unit

    This method enables syntax such as the following:

    This method enables syntax such as the following:

    all(xs) must not (exist)
            ^
    

    Definition Classes
    ResultOfCollectedAny
  20. def must(existWord: ExistWord)(implicit existence: Existence[String]): Unit

    This method enables syntax such as the following:

    This method enables syntax such as the following:

    all(xs) must exist
            ^
    

    Definition Classes
    ResultOfCollectedAny
  21. def must(containWord: ContainWord): ResultOfContainWordForCollectedAny[String]

    This method enables syntax such as the following:

    This method enables syntax such as the following:

    all (xs) must contain oneOf (1, 2, 3)
             ^
    

    Definition Classes
    ResultOfCollectedAny
  22. def must(inv: TripleEqualsInvocationOnSpread[String])(implicit ev: Numeric[String]): Unit

    This method enables syntax such as the following:

    This method enables syntax such as the following:

    all (xs) must === (100 +- 1)
             ^
    

    Definition Classes
    ResultOfCollectedAny
  23. def must[U](inv: TripleEqualsInvocation[U])(implicit constraint: Constraint[String, U]): Unit

    This method enables syntax such as the following:

    This method enables syntax such as the following:

    all (xs) must === (b)
             ^
    

    Definition Classes
    ResultOfCollectedAny
  24. def must(haveWord: HaveWord): ResultOfHaveWordForCollectedExtent[String]

    This method enables syntax such as the following:

    This method enables syntax such as the following:

    all (results) must have length (3)
           
    all (results) must have size (3)
           
    

    Definition Classes
    ResultOfCollectedAny
  25. def must(beWord: BeWord): ResultOfBeWordForCollectedAny[String]

    This method enables syntax such as the following:

    This method enables syntax such as the following:

    all(xs) must be theSameInstanceAs anotherObject
            ^
    

    Definition Classes
    ResultOfCollectedAny
  26. def must[TYPECLASS1[_], TYPECLASS2[_]](rightMatcherFactory2: MatcherFactory2[String, TYPECLASS1, TYPECLASS2])(implicit typeClass1: TYPECLASS1[String], typeClass2: TYPECLASS2[String]): Unit

    This method enables syntax such as the following:

    This method enables syntax such as the following:

    all(xs) must (equal (expected) and have length 12)
            ^
    

    Definition Classes
    ResultOfCollectedAny
  27. def must[TYPECLASS1[_]](rightMatcherFactory1: MatcherFactory1[String, TYPECLASS1])(implicit typeClass1: TYPECLASS1[String]): Unit

    This method enables syntax such as the following:

    This method enables syntax such as the following:

    all(xs) must equal (3)
            ^
    

    Definition Classes
    ResultOfCollectedAny
  28. def must(rightMatcher: Matcher[String]): Unit

    This method enables syntax such as the following:

    This method enables syntax such as the following:

    all(xs) must be (3)
            ^
    

    Definition Classes
    ResultOfCollectedAny
  29. def mustBe[U <: String](resultOfAnWordApplication: ResultOfAnWordToBePropertyMatcherApplication[U])(implicit ev: <:<[String, AnyRef]): Unit

    This method enables the following syntax, where excellentRead refers to a BePropertyMatcher[Book]:

    This method enables the following syntax, where excellentRead refers to a BePropertyMatcher[Book]:

    all(xs) mustBe an (excellentRead)
            ^
    

    Definition Classes
    ResultOfCollectedAny
  30. def mustBe[U <: String](resultOfAWordApplication: ResultOfAWordToBePropertyMatcherApplication[U])(implicit ev: <:<[String, AnyRef]): Unit

    This method enables the following syntax, where goodRead refers to a BePropertyMatcher[Book]:

    This method enables the following syntax, where goodRead refers to a BePropertyMatcher[Book]:

    all(xs) mustBe a (goodRead)
            ^
    

    Definition Classes
    ResultOfCollectedAny
  31. def mustBe[U <: String](bePropertyMatcher: BePropertyMatcher[U])(implicit ev: <:<[String, AnyRef]): Unit

    This method enables the following syntax, where excellentRead refers to a BePropertyMatcher[Book]:

    This method enables the following syntax, where excellentRead refers to a BePropertyMatcher[Book]:

    all(xs) mustBe excellentRead
            ^
    

    Definition Classes
    ResultOfCollectedAny
  32. def mustBe(o: Null)(implicit ev: <:<[String, AnyRef]): Unit

    This method enables the following syntax:

    This method enables the following syntax:

    all(xs) mustBe null
            ^
    

    Definition Classes
    ResultOfCollectedAny
  33. def mustBe(resultOfAnWordApplication: ResultOfAnWordToSymbolApplication)(implicit toAnyRef: <:<[String, AnyRef]): Unit

    This method enables the following syntax:

    This method enables the following syntax:

    all(xs) mustBe an ('empty)
            ^
    

    Definition Classes
    ResultOfCollectedAny
  34. def mustBe(resultOfAWordApplication: ResultOfAWordToSymbolApplication)(implicit toAnyRef: <:<[String, AnyRef]): Unit

    This method enables the following syntax:

    This method enables the following syntax:

    all(xs) mustBe a ('empty)
            ^
    

    Definition Classes
    ResultOfCollectedAny
  35. def mustBe(symbol: Symbol)(implicit toAnyRef: <:<[String, AnyRef]): Unit

    This method enables the following syntax:

    This method enables the following syntax:

    all(xs) mustBe 'empty
            ^
    

    Definition Classes
    ResultOfCollectedAny
  36. def mustBe(resultOfSameInstanceAsApplication: ResultOfTheSameInstanceAsApplication)(implicit toAnyRef: <:<[String, AnyRef]): Unit

    This method enables syntax such as the following:

    This method enables syntax such as the following:

    all(xs) mustBe theSameInstanceAs (anotherObject)
            ^
    

    Definition Classes
    ResultOfCollectedAny
  37. def mustBe(spread: Spread[String]): Unit

    This method enables syntax such as the following:

    This method enables syntax such as the following:

    all(xs) mustBe 7.1 +- 0.2
            ^
    

    Definition Classes
    ResultOfCollectedAny
  38. def mustBe(beMatcher: BeMatcher[String]): Unit

    This method enables the following syntax, where odd refers to a BeMatcher[Int]:

    This method enables the following syntax, where odd refers to a BeMatcher[Int]:

    testing
    all(xs) mustBe odd
            ^
    

    Definition Classes
    ResultOfCollectedAny
  39. def mustBe(comparison: ResultOfGreaterThanOrEqualToComparison[String]): Unit

    This method enables syntax such as the following:

    This method enables syntax such as the following:

    all(8, 9, 10) mustBe >= (7)
                  ^
    

    Definition Classes
    ResultOfCollectedAny
  40. def mustBe(comparison: ResultOfGreaterThanComparison[String]): Unit

    This method enables syntax such as the following:

    This method enables syntax such as the following:

    all(8, 9, 10) mustBe > (7)
                  ^
    

    Definition Classes
    ResultOfCollectedAny
  41. def mustBe(comparison: ResultOfLessThanOrEqualToComparison[String]): Unit

    This method enables syntax such as the following:

    This method enables syntax such as the following:

    all(4, 5, 6) mustBe <= (7)
                 ^
    

    Definition Classes
    ResultOfCollectedAny
  42. def mustBe(comparison: ResultOfLessThanComparison[String]): Unit

    This method enables syntax such as the following:

    This method enables syntax such as the following:

    all(4, 5, 6) mustBe < (7)
                 ^
    

    Definition Classes
    ResultOfCollectedAny
  43. def mustBe(right: Any): Unit

    This method enables syntax such as the following:

    This method enables syntax such as the following:

    all (xs) mustBe 7
             ^
    

    Definition Classes
    ResultOfCollectedAny
  44. def mustBe(definedWord: DefinedWord)(implicit definition: Definition[String]): Unit

    This method enables the following syntax:

    This method enables the following syntax:

    all(xs) mustBe defined
            ^
    

    Definition Classes
    ResultOfCollectedAny
  45. def mustBe(emptyWord: EmptyWord)(implicit emptiness: Emptiness[String]): Unit

    This method enables the following syntax:

    This method enables the following syntax:

    all(xs) mustBe empty
            ^
    

    Definition Classes
    ResultOfCollectedAny
  46. def mustBe(writableWord: WritableWord)(implicit writability: Writability[String]): Unit

    This method enables the following syntax:

    This method enables the following syntax:

    all(xs) mustBe writable
            ^
    

    Definition Classes
    ResultOfCollectedAny
  47. def mustBe(readableWord: ReadableWord)(implicit readability: Readability[String]): Unit

    This method enables the following syntax:

    This method enables the following syntax:

    all(xs) mustBe readable
            ^
    

    Definition Classes
    ResultOfCollectedAny
  48. def mustBe(sortedWord: SortedWord)(implicit sortable: Sortable[String]): Unit

    This method enables the following syntax:

    This method enables the following syntax:

    all(xs) mustBe sorted
            ^
    

    Definition Classes
    ResultOfCollectedAny
  49. def mustEqual(right: Null)(implicit ev: <:<[String, AnyRef]): Unit

    This method enables syntax such as the following:

    This method enables syntax such as the following:

    result mustEqual null
           ^
    

    Definition Classes
    ResultOfCollectedAny
  50. def mustEqual(spread: Spread[String]): Unit

    This method enables syntax such as the following:

    This method enables syntax such as the following:

    result mustEqual 7.1 +- 0.2
           ^
    

    Definition Classes
    ResultOfCollectedAny
  51. def mustEqual(right: Any)(implicit equality: Equality[String]): Unit

    This method enables syntax such as the following:

    This method enables syntax such as the following:

    all (xs) mustEqual 7
             ^
    

    Definition Classes
    ResultOfCollectedAny
  52. def mustNot(includeWord: IncludeWord): ResultOfIncludeWordForCollectedString

    This method enables syntax such as the following:

    This method enables syntax such as the following:

    all(string) mustNot include regex ("wo.ld")
                ^
    

  53. def mustNot(endWithWord: EndWithWord): ResultOfEndWithWordForCollectedString

    This method enables syntax such as the following:

    This method enables syntax such as the following:

    all(string) mustNot endWith regex ("wo.ld")
                ^
    

  54. def mustNot(startWithWord: StartWithWord): ResultOfStartWithWordForCollectedString

    This method enables syntax such as the following:

    This method enables syntax such as the following:

    all(string) mustNot startWith regex ("Hel*o")
                ^
    

  55. def mustNot(fullyMatchWord: FullyMatchWord): ResultOfFullyMatchWordForCollectedString

    This method enables syntax such as the following:

    This method enables syntax such as the following:

    all(string) mustNot fullyMatch regex ("""(-)?(\d+)(\.\d*)?""")
                ^
    

  56. def mustNot(existWord: ExistWord)(implicit existence: Existence[String]): Unit

    This method enables syntax such as the following:

    This method enables syntax such as the following:

    all(xs) mustNot exist
            ^
    

    Definition Classes
    ResultOfCollectedAny
  57. def mustNot(containWord: ContainWord): ResultOfContainWordForCollectedAny[String]

    This method enables syntax such as the following:

    This method enables syntax such as the following:

    all (xs) mustNot contain (oneOf (1, 2, 3))
             ^
    

    Definition Classes
    ResultOfCollectedAny
  58. def mustNot(beWord: BeWord): ResultOfBeWordForCollectedAny[String]

    This method enables the following syntax:

    This method enables the following syntax:

    all(xs) mustNot be theSameInstanceAs anotherInstance
            ^
    

    Definition Classes
    ResultOfCollectedAny
  59. def mustNot[TYPECLASS1[_]](rightMatcherFactory1: MatcherFactory1[String, TYPECLASS1])(implicit typeClass1: TYPECLASS1[String]): Unit

    This method enables syntax such as the following:

    This method enables syntax such as the following:

    all(xs) mustNot (equal (3))
            ^
    

    Definition Classes
    ResultOfCollectedAny
  60. def mustNot[U <: String](rightMatcherX1: Matcher[U]): Unit

    This method enables syntax such as the following:

    This method enables syntax such as the following:

    all(xs) mustNot (be (3))
            ^
    

    Definition Classes
    ResultOfCollectedAny
  61. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  64. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  65. def toString(): String

    Overrides to return pretty toString.

    Overrides to return pretty toString.

    returns

    "ResultOfCollectedString([collected], [xs])"

    Definition Classes
    ResultOfCollectedStringResultOfCollectedAny → AnyRef → Any
  66. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from ResultOfCollectedAny[String]

Inherited from AnyRef

Inherited from Any

Ungrouped