Skip to content

Commit 84c5c04

Browse files
committed
add output ComplexLiteralId
1 parent 05fb721 commit 84c5c04

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/HydraScript.UnitTests/Domain/FrontEnd/ComplexLiteralTests.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,14 @@
22

33
namespace HydraScript.UnitTests.Domain.FrontEnd;
44

5-
public class ComplexLiteralTests
5+
public class ComplexLiteralTests(ITestOutputHelper testOutputHelper)
66
{
77
[Theory, MemberData(nameof(StartsWithData))]
88
public void Id_DifferentType_StartsWithExpected(ComplexLiteral complexLiteral, string expectedPrefix)
99
{
10-
complexLiteral.Id.Should().StartWith(expectedPrefix);
10+
var complexLiteralId = complexLiteral.Id;
11+
testOutputHelper.WriteLine(complexLiteralId);
12+
complexLiteralId.Should().StartWith(expectedPrefix);
1113
}
1214

1315
public static TheoryData<ComplexLiteral, string> StartsWithData =>

0 commit comments

Comments
 (0)