diff options
author | Derek Brown <[email protected]> | 2015-04-05 20:19:35 -0400 |
---|---|---|
committer | Zandra Hird <[email protected]> | 2015-05-08 13:56:44 +0200 |
commit | 9958f2864502385766753f8f4a7d140aa7a582b5 (patch) | |
tree | 64388a54a9580c90b6876a10f09437a888ea45b8 /lib/eunit/doc | |
parent | 71b16c9b704374ea78de05943883befd49846a22 (diff) | |
download | otp-9958f2864502385766753f8f4a7d140aa7a582b5.tar.gz otp-9958f2864502385766753f8f4a7d140aa7a582b5.tar.bz2 otp-9958f2864502385766753f8f4a7d140aa7a582b5.zip |
Add mention of ?assertNotMatch and ?assertNotEqual
These two macros are defined in eunit.hrl, but are missing in this
documentation.
Diffstat (limited to 'lib/eunit/doc')
-rw-r--r-- | lib/eunit/doc/overview.edoc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/eunit/doc/overview.edoc b/lib/eunit/doc/overview.edoc index 872a017440..df716cdeea 100644 --- a/lib/eunit/doc/overview.edoc +++ b/lib/eunit/doc/overview.edoc @@ -569,6 +569,9 @@ Examples: ```?assertMatch({found, {fred, _}}, lookup(bloggs, Table))''' ```?assertMatch([X|_] when X > 0, binary_to_list(B))''' </dd> +<dt>`assertNotMatch(GuardedPattern, Expr)'</dt> +<dd>The inverse case of assertMatch, for convenience. +</dd> <dt>`assertEqual(Expect, Expr)'</dt> <dd>Evaluates the expressions `Expect' and `Expr' and compares the results for equality, if testing is enabled. If the values are not @@ -583,6 +586,9 @@ Examples: ```?assertEqual("b" ++ "a", lists:reverse("ab"))''' ```?assertEqual(foo(X), bar(Y))''' </dd> +<dt>`assertNotEqual(Unexpected, Expr)'</dt> +<dd>The inverse case of assertEqual, for convenience. +</dd> <dt>`assertException(ClassPattern, TermPattern, Expr)'</dt> <dt>`assertError(TermPattern, Expr)'</dt> <dt>`assertExit(TermPattern, Expr)'</dt> |