From 7f6a8f92d5fdb327a759d4bf775c090229d66cae Mon Sep 17 00:00:00 2001
From: Yuliya Prihodko <107035036+pressayuliya@users.noreply.github.com>
Date: Thu, 13 Nov 2025 11:35:39 +0300
Subject: [PATCH 1/2] Merge pull request #1027 from reportportal/EPMRPP-109456
EPMRPP-109456 || Add Before/After method definition to Glossary
---
docs/glossary/index.mdx | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/docs/glossary/index.mdx b/docs/glossary/index.mdx
index 4e0ec28669..292bc978d4 100644
--- a/docs/glossary/index.mdx
+++ b/docs/glossary/index.mdx
@@ -75,3 +75,11 @@ Logs are textual data necessary for debugging and problem solving. Our Analyzer
The ID which is used along with Steps. It is unique signature of tests by which we build test history. In general, you don’t need to manipulate these IDs, since every agent usually generates them with Code reference and parameters. But if you want to customize your history view this is the first point where to look. Agents usually generate Test Case IDs based on code reference and have a way to customize it.
+
+## Before Method
+
+A lifecycle hook or method provided by test frameworks that is executed before a test case or test suite starts. In the context of ReportPortal, it is used to initialize test data, set up configurations, or send a "start test" event to ReportPortal to log the beginning of a test execution.
+
+## After Method
+
+A lifecycle hook or method provided by test frameworks that is executed after a test case or test suite finishes. In the context of ReportPortal, it is used to clean up resources, log results, or send a "finish test" event to ReportPortal to log the completion of a test execution along with its status (e.g., passed, failed, skipped).
From 094dec8b76c7b729d68c6e1aacd36d4f0a24d319 Mon Sep 17 00:00:00 2001
From: Yuliya Prihodko <107035036+pressayuliya@users.noreply.github.com>
Date: Thu, 13 Nov 2025 11:36:19 +0300
Subject: [PATCH 2/2] EPMRPP-109428 || Update information for the xUnit and
cucumber agents (#1029)
Co-authored-by: Yuliya_Prihodko
---
.../test-framework-integration/Java/Cucumber.md | 1 +
.../test-framework-integration/Net/xUnit.md | 8 +++++++-
2 files changed, 8 insertions(+), 1 deletion(-)
diff --git a/docs/log-data-in-reportportal/test-framework-integration/Java/Cucumber.md b/docs/log-data-in-reportportal/test-framework-integration/Java/Cucumber.md
index 6b0dc63953..c3113e04ff 100644
--- a/docs/log-data-in-reportportal/test-framework-integration/Java/Cucumber.md
+++ b/docs/log-data-in-reportportal/test-framework-integration/Java/Cucumber.md
@@ -20,6 +20,7 @@ Cucumber is a popular open-source framework for behavior-driven development (BDD
| 4.4.0 - 4.8.1 | 3.2.0 - 5.1.0 | [sources/cucumber4](https://github.com/reportportal/agent-java-cucumber4) |
| 5.0.0 - 5.7.0 | _ | [sources/cucumber5](https://github.com/reportportal/agent-java-cucumber5) |
| 6.0.0 - 7.0.0 | 6.0.0 - 7.0.0 | [sources/cucumber6](https://github.com/reportportal/agent-java-cucumber6) |
+| 6.0.0 - 7.0.0 | 6.0.0 - 7.0.0 | [sources/cucumber7](https://github.com/reportportal/agent-java-cucumber7) |
[Installation guide](https://github.com/reportportal/agent-java-cucumber#readme)
diff --git a/docs/log-data-in-reportportal/test-framework-integration/Net/xUnit.md b/docs/log-data-in-reportportal/test-framework-integration/Net/xUnit.md
index 029c587d54..25bd1e14b9 100644
--- a/docs/log-data-in-reportportal/test-framework-integration/Net/xUnit.md
+++ b/docs/log-data-in-reportportal/test-framework-integration/Net/xUnit.md
@@ -10,6 +10,12 @@ There is an agent to integrate [xUnit](https://xunit.net/) with ReportPortal.
xUnit is a testing framework for .NET applications. The "Arrange, Act, Assert" (AAA) pattern, which is a systematic method of designing test cases, is the foundation of xUnit. The AAA pattern places emphasis on how each test should clearly distinguish between how the test environment and data are set up, how the test code is executed, and how the test result is verified (Assert).
-[Installation guide](https://github.com/reportportal/agent-net-xunit#readme)
+Currently, we have 2 xUnit agents:
+
+* [agent-net-xunit](https://github.com/reportportal/agent-net-xunit#readme)
+Old version. It supports xUnit v2 and earlier .NET frameworks.
+
+* [agent-dotnet-xunit.v3](https://github.com/reportportal/agent-dotnet-xunit.v3#readme)
+New version. It aligns with xUnit v3.
[Examples](https://github.com/reportportal/example-net-xunit)