ScalaTest 1.0
|
|
org/scalatest/matchers/Matchers.scala
]
final
class
ResultOfRegexWordApplication(val
regex : scala.util.matching.Regex)
extends
AnyRefShouldMatchers
or MustMatchers
for an overview of
the matchers DSL.
The primary constructor enables the following syntax (with a passed scala.util.matching.Regex
):
"eight" should not fullyMatch regex ("""(-)?(\d+)(\.\d*)?""".r) ^
Additional Constructor Summary | |
def
|
this
(regexString : java.lang.String) : ResultOfRegexWordApplication
This auxiliary constructor enables the following syntax (with a passed
java.lang.String ):
"eight" should not fullyMatch regex ("""(-)?(\d+)(\.\d*)?""") ^ |
Methods inherited from AnyRef | |
getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
Methods inherited from Any | |
==, !=, isInstanceOf, asInstanceOf |
Additional Constructor Details |
def
this(regexString : java.lang.String) : ResultOfRegexWordApplication
java.lang.String
):
"eight" should not fullyMatch regex ("""(-)?(\d+)(\.\d*)?""") ^
ScalaTest 1.0
|
|