diff options
author | Zandra Hird <[email protected]> | 2015-06-02 12:34:38 +0200 |
---|---|---|
committer | Zandra Hird <[email protected]> | 2015-06-02 12:34:38 +0200 |
commit | 2d4367f3c863e71006aed3e0076cf3cd08ca2b42 (patch) | |
tree | cc926c9526a24ae18f9c6507cd89c0761bf13f51 /lib/eunit/doc/overview.edoc | |
parent | 5367528299f5ea2c30923b8b19f35abac4de971a (diff) | |
parent | d11615cf24964b45e7fc488acaa03b54cbe16af3 (diff) | |
download | otp-2d4367f3c863e71006aed3e0076cf3cd08ca2b42.tar.gz otp-2d4367f3c863e71006aed3e0076cf3cd08ca2b42.tar.bz2 otp-2d4367f3c863e71006aed3e0076cf3cd08ca2b42.zip |
Merge branch 'zandra/revert/saleyn/eunit'
Diffstat (limited to 'lib/eunit/doc/overview.edoc')
-rw-r--r-- | lib/eunit/doc/overview.edoc | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/eunit/doc/overview.edoc b/lib/eunit/doc/overview.edoc index eb60f673ef..df716cdeea 100644 --- a/lib/eunit/doc/overview.edoc +++ b/lib/eunit/doc/overview.edoc @@ -572,21 +572,6 @@ Examples: <dt>`assertNotMatch(GuardedPattern, Expr)'</dt> <dd>The inverse case of assertMatch, for convenience. </dd> -<dt>`assertReceive(GuardedPattern, Timeout)'</dt> -<dd>Waits for up to the `Timeout' milliseconds for a message to arrive -in the mailbox of the current process that matches against the -`GuardedPattern' if testing is enabled. -If no message matching the `GuardedPattern' is received in the specified -`Timeout' interval, the assertion fails and an informative exception will -be generated; see the `assert' macro for further details. `GuardedPattern' -can be anything that you can write on the left hand side of the `->' -symbol in a case-clause, except that it cannot contain comma-separated -guard tests. - -Examples: -```?assertReceive(done, 1000)''' -```?assertReceive(Bin when byte_size(Bin) > 10, 1000)''' -</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 |