Skip to content
Merged

Publish #1030

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs/glossary/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.

<MediaViewer src={require('./img/Glossary9.png')} alt="Test Case ID scheme on ReportPortal" />

## 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).
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)<br />
Old version. It supports xUnit v2 and earlier .NET frameworks.

* [agent-dotnet-xunit.v3](https://github.com/reportportal/agent-dotnet-xunit.v3#readme)<br />
New version. It aligns with xUnit v3.

[Examples](https://github.com/reportportal/example-net-xunit)