We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3e4ddb commit a5508a7Copy full SHA for a5508a7
1 file changed
src/RoyalCode.SmartSelector.Tests/Tests/AutoPropertiesTests.cs
@@ -60,8 +60,8 @@ public void Should_Support_Nameof_In_Constructor_And_Named_Exclude()
60
61
var generated = string.Join("\n-----\n", compilation.SyntaxTrees.Skip(1).Select(t => t.ToString()));
62
63
- generated.Should().Contain("Id { get; set; }"); // not excluded
64
- generated.Should().NotContain("Name { get; set; }"); // excluded by nameof in ctor
+ generated.Should().Contain("Id { get; set; }"); // not excluded
+ generated.Should().NotContain("Name { get; set; }"); // excluded by nameof in ctor
65
generated.Should().NotContain("Active { get; set; }"); // excluded by named argument nameof
66
}
67
0 commit comments