Corrected Excepts to Expects (2x)

martinmoene
2012-08-30 13:59:30 -07:00
parent 4433f34049
commit cea88c19ba

@@ -28,11 +28,11 @@ Expects that an exception (of any type) is be thrown during evaluation of the ex
**REQUIRE_THROWS_AS(** _expression_ and _exception type_ **)** and
**CHECK_THROWS_AS(** _expression_, _exception type_ **)**
Excepts that an exception of the _specified type_ is thrown during evaluation of the expression.
Expects that an exception of the _specified type_ is thrown during evaluation of the expression.
**REQUIRE_NOTHROW(** _expression_ **)** and
**CHECK_NOTHROW(** _expression_ **)**
Excepts that no exception is thrown during evaluation of the expression.
Expects that no exception is thrown during evaluation of the expression.
## Matcher expressions