ResultOfNotExist

final class ResultOfNotExist(notWord: NotWord)

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

class Object
trait Matchable
class Any

Value members

Concrete methods

infix def and(anotherMatcher: Matcher[Any]): MatcherFactory1[Any, Existence]

This method enables the following syntax:

This method enables the following syntax:

file should (not (exist) and be (existFile))
                      ^
infix def and[TYPECLASS1[_]](anotherMatcherFactory: MatcherFactory1[Any, TYPECLASS1]): MatcherFactory2[Any, Existence, TYPECLASS1]

This method enables the following syntax:

This method enables the following syntax:

file should (not (exist) and equal (existFile))
                      ^
infix def or(anotherMatcher: Matcher[Any]): MatcherFactory1[Any, Existence]

This method enables the following syntax:

This method enables the following syntax:

file should (not (exist) or be (existFile))
                      ^
infix def or[TYPECLASS1[_]](anotherMatcherFactory: MatcherFactory1[Any, TYPECLASS1]): MatcherFactory2[Any, Existence, TYPECLASS1]

This method enables the following syntax:

This method enables the following syntax:

file should (not (exist) or equal (existFile))
                      ^
override def toString: String

Overrides toString to return "not exist"

Overrides toString to return "not exist"

Definition Classes
Any