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
test(public-api): update assertion snapshots for StringValue overload
  • Loading branch information
thomhurst committed Apr 24, 2026
commit 0385e9e19b42e9da1273f93a768182c2dc07f8b8
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ namespace
public static . That(<.> action, [.("action")] string? expression = null) { }
public static . That(. task, [.("task")] string? expression = null) { }
[.(2)]
public static .<string> That(string? value, [.("value")] string? expression = null) { }
public static .<string> That(.StringValue value, [.("value")] string? expression = null) { }
[.(3)]
public static .<TItem> That<TItem>(.<TItem>? value, [.("value")] string? expression = null) { }
[.(1)]
Expand Down Expand Up @@ -271,6 +271,11 @@ namespace
public static .StringMatcher AsRegex(string pattern) { }
public static .StringMatcher AsWildcard(string pattern) { }
}
public readonly struct StringValue
{
public string? Value { get; }
public static .StringValue op_Implicit(string? value) { }
}
}
namespace .
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ namespace
public static .<object?> That(.IEnumerable value, [.("value")] string? expression = null) { }
public static . That(<.> action, [.("action")] string? expression = null) { }
public static . That(. task, [.("task")] string? expression = null) { }
public static .<string> That(string? value, [.("value")] string? expression = null) { }
public static .<string> That(.StringValue value, [.("value")] string? expression = null) { }
public static .<TItem> That<TItem>(.<TItem>? value, [.("value")] string? expression = null) { }
public static .<TItem> That<TItem>(.<TItem> value, [.("value")] string? expression = null) { }
public static .<TItem> That<TItem>(.<TItem>? value, [.("value")] string? expression = null) { }
Expand Down Expand Up @@ -254,6 +254,11 @@ namespace
public static .StringMatcher AsRegex(string pattern) { }
public static .StringMatcher AsWildcard(string pattern) { }
}
public readonly struct StringValue
{
public string? Value { get; }
public static .StringValue op_Implicit(string? value) { }
}
}
namespace .
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ namespace
public static . That(<.> action, [.("action")] string? expression = null) { }
public static . That(. task, [.("task")] string? expression = null) { }
[.(2)]
public static .<string> That(string? value, [.("value")] string? expression = null) { }
public static .<string> That(.StringValue value, [.("value")] string? expression = null) { }
[.(3)]
public static .<TItem> That<TItem>(.<TItem>? value, [.("value")] string? expression = null) { }
[.(1)]
Expand Down Expand Up @@ -271,6 +271,11 @@ namespace
public static .StringMatcher AsRegex(string pattern) { }
public static .StringMatcher AsWildcard(string pattern) { }
}
public readonly struct StringValue
{
public string? Value { get; }
public static .StringValue op_Implicit(string? value) { }
}
}
namespace .
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ namespace
public static .<object?> That(.IEnumerable value, [.("value")] string? expression = null) { }
public static . That(<.> action, [.("action")] string? expression = null) { }
public static . That(. task, [.("task")] string? expression = null) { }
public static .<string> That(string? value, [.("value")] string? expression = null) { }
public static .<string> That(.StringValue value, [.("value")] string? expression = null) { }
public static .<TItem> That<TItem>(.<TItem>? value, [.("value")] string? expression = null) { }
public static .<TItem> That<TItem>(.<TItem>? value, [.("value")] string? expression = null) { }
public static .<TItem> That<TItem>(.<TItem>? value, [.("value")] string? expression = null) { }
Expand Down Expand Up @@ -213,6 +213,11 @@ namespace
public static .StringMatcher AsRegex(string pattern) { }
public static .StringMatcher AsWildcard(string pattern) { }
}
public readonly struct StringValue
{
public string? Value { get; }
public static .StringValue op_Implicit(string? value) { }
}
}
namespace .
{
Expand Down
Loading