Drag-Drop-Explorer

This commit is contained in:
2023-01-02 14:58:22 -07:00
parent 110b306206
commit d0cd52807d
52 changed files with 1092 additions and 846 deletions

View File

@ -80,6 +80,8 @@ public partial class UnitTestCalculations
{
PersonBirthday personBirthday = new(new(1980, 1, 17));
double? age = IPersonBirthday.GetAge(personBirthday);
if (age is null)
throw new NullReferenceException(nameof(age));
Assert.IsNotNull(age);
Assert.IsTrue(age.Value > 42.6092);
}