Exemplo n.º 1
0
    public void Y2020_Day10_GetJoltageProduct_Returns_Correct_Value(int[] joltages, int expected)
    {
        // Act
        int actual = Day10.GetJoltageProduct(joltages);

        // Assert
        actual.ShouldBe(expected);
    }