From 07701f946a4e172d8e2ea1fe72da38f883c6ecc0 Mon Sep 17 00:00:00 2001 From: Jeremy <51220084+jeremy-rifkin@users.noreply.github.com> Date: Fri, 29 Mar 2024 15:40:18 -0500 Subject: [PATCH] Mention SUCCEED along with FAIL in logging.md --- docs/logging.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/logging.md b/docs/logging.md index dbd4f912..79709386 100644 --- a/docs/logging.md +++ b/docs/logging.md @@ -114,6 +114,10 @@ Similar to `INFO`, but messages are not limited to their own scope: They are rem The message is always reported but does not fail the test. +**SUCCEED(** _message expression_ **)** + +The message is reported and the test case succeeds. + **FAIL(** _message expression_ **)** The message is reported and the test case fails.