コード例 #1
0
def test_max_2():
    d1 = DiceSet(4, 3, 11)
    assert d1.max() == 132
コード例 #2
0
def test_max_3():
    d1 = DiceSet(0, 3, 11)
    assert d1.max() == 0
コード例 #3
0
def test_max_1():
    d1 = DiceSet(4, 3)
    assert d1.max() == 12