Beispiel #1
0
def test_part1():
    with open('input.txt') as file:
        specs = file.read()
    n = 1000
    moons = MoonSet(specs)
    moons.run(n)
    assert moons.total_energy() == 12082
Beispiel #2
0
def test_energy(input_, n, energy):
    moons = MoonSet(input_)
    moons.run(n)
    assert moons.total_energy() == energy
Beispiel #3
0
def test_energy1():
    moons = MoonSet(test_input_1)
    moons.run(10)
    assert moons.total_energy() == 179
Beispiel #4
0
def test_1(input_, n, state):
    moons = MoonSet(input_)
    moons.run(n)
    expected = MoonSet.build_from_test_data(state)
    assert moons == expected