Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save es-repo/f5a01a36bbf7027e50b92a98201a5402 to your computer and use it in GitHub Desktop.
Save es-repo/f5a01a36bbf7027e50b92a98201a5402 to your computer and use it in GitHub Desktop.
better-unit-test-in-c#-article-Box-v2.cs
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