-
-
Notifications
You must be signed in to change notification settings - Fork 109
Closed
Description
Hi Tom,
I'm wondering if the documentation for sharing data between dependent tests is actually ahead of the implemented feature. In the documentation here, the following statement is made.
This is done by calling the
GetTestsmethod on aTestContextobject. It takes the test's method name (so you can usenameof(...)) and optionally the parameter types for if there's multiple overloads.
In the actual code, this GetTests implementation is hidden behind an internal access modifier.
// TestContext.Dependencies.cs
public partial class TestContext
{
internal List<TestContext> GetTests(string testName)
{
// Omitted for brevity
}Is there another way a test could "receive an output" from a dependent test in the currently available public API? Thanks!
Copilot
Metadata
Metadata
Assignees
Labels
No labels