We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05fb721 commit 84c5c04Copy full SHA for 84c5c04
tests/HydraScript.UnitTests/Domain/FrontEnd/ComplexLiteralTests.cs
@@ -2,12 +2,14 @@
2
3
namespace HydraScript.UnitTests.Domain.FrontEnd;
4
5
-public class ComplexLiteralTests
+public class ComplexLiteralTests(ITestOutputHelper testOutputHelper)
6
{
7
[Theory, MemberData(nameof(StartsWithData))]
8
public void Id_DifferentType_StartsWithExpected(ComplexLiteral complexLiteral, string expectedPrefix)
9
10
- complexLiteral.Id.Should().StartWith(expectedPrefix);
+ var complexLiteralId = complexLiteral.Id;
11
+ testOutputHelper.WriteLine(complexLiteralId);
12
+ complexLiteralId.Should().StartWith(expectedPrefix);
13
}
14
15
public static TheoryData<ComplexLiteral, string> StartsWithData =>
0 commit comments