ex-col-03-santa/SantaClausInc.Test/ParcelTests.cs
github-classroom[bot] 3768d366ff
Initial commit
2024-12-11 15:23:18 +00:00

16 lines
362 B
C#

using SantaClausInc.Core;
namespace SantaClausInc.Test;
public sealed class ParcelTests
{
[Fact]
public void StringRepresentation()
{
var parcel = new Parcel(new ChildInfo("Horst", 72, "Leonding", 12, 8.9D),
"Bar");
parcel.ToString()
.Should().Be("Bar for Horst (age 72)");
}
}