Skip to content

WIP: Initial warning about cross-process marshalling: Issue #996 #995

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
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
4 changes: 4 additions & 0 deletions docs/articles/nunit/extending-nunit/Custom-Attributes.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ application, information about the tests may be returned for display, as is done

The following interfaces are called at load time.

> [!WARNING]
> Parameter values injected into test methods by by an `ITestBuilder` are marshalled cross-process to the test execution process.
> This can cause unexpected behaviour if there are attempts to use that value outside of the test scope.

| Interface | Used By |
|------------------------|---------|
| [IFixtureBuilder](IFixtureBuilder-Interface.md) | Attributes that know how to build a fixture from a test class |
Expand Down