示例#1
0
    public static void Y2015_Day25_GetCodeForWeatherMachine(int row, int column, ulong expected)
    {
        // Act
        ulong actual = Day25.GetCodeForWeatherMachine(row, column);

        // Assert
        actual.ShouldBe(expected);
    }