Created
May 22, 2022 21:25
-
-
Save es-repo/f5a01a36bbf7027e50b92a98201a5402 to your computer and use it in GitHub Desktop.
better-unit-test-in-c#-article-Box-v2.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public sealed record Box | |
{ | |
... | |
public bool IsOpen { get; internal set; } | |
internal Box(Dictionary<string, Thing> thingsInside) | |
{ | |
this.thingsInside = thingsInside; | |
} | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment