public void Y2021_Day06_CountFish_Returns_Correct_Value(int days, long expected) { // Arrange int[] fish = { 3, 4, 3, 1, 2 }; // Act long actual = Day06.CountFish(fish, days); // Assert actual.ShouldBe(expected); }