Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix: correct public API snapshots with CustomHookExecutor changes
The previous commit had outdated snapshot files. This commit includes the correct
API surface with:
- CustomHookExecutor property on TestContext
- SetHookExecutor() method on TestRegisteredContext

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
  • Loading branch information
thomhurst and claude committed Oct 26, 2025
commit d972602576acbe1a2eeafe5323b8e7f6a82c1908
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,6 @@ namespace
{
public static void Fail(string reason) { }
public static Multiple() { }
public static void NotNull<T>([.] T? value, [.("value")] string? expression = null)
where T : class { }
public static void NotNull<T>([.] T? value, [.("value")] string? expression = null)
where T : struct { }
public static void Null<T>(T? value, [.("value")] string? expression = null)
where T : class { }
public static void Null<T>(T? value, [.("value")] string? expression = null)
where T : struct { }
public static . That( action, [.("action")] string? expression = null) { }
public static .<object?> That(.IEnumerable value, [.("value")] string? expression = null) { }
public static . That(<.> action, [.("action")] string? expression = null) { }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1268,6 +1268,7 @@ namespace
public .CancellationToken CancellationToken { get; set; }
public .ClassHookContext ClassContext { get; }
public int CurrentRetryAttempt { get; }
public .? CustomHookExecutor { get; set; }
public .<.TestDetails> Dependencies { get; }
public ? DisplayNameFormatter { get; set; }
public .TestContextEvents Events { get; }
Expand Down Expand Up @@ -1471,6 +1472,7 @@ namespace
public .TestContext TestContext { get; }
public .TestDetails TestDetails { get; }
public string TestName { get; }
public void SetHookExecutor(. executor) { }
public void SetParallelLimiter(. parallelLimit) { }
public void SetTestExecutor(. executor) { }
}
Expand Down
Loading