コード例 #1
0
def test_simple_with_mode_addition_first():
    input_str = '1 + 2 * 3 + 4 * 5 + 6'
    assert process_lark.add_first_calc(input_str) == 231
コード例 #2
0
def test_nested_4_with_mode_addition_first():
    input_str = '((2 + 4 * 9) * (6 + 9 * 8 + 6) + 6) + 2 + 4 * 2'
    assert process_lark.add_first_calc(input_str) == 23340
コード例 #3
0
def test_nested_3_with_mode_addition_first():
    input_str = '5 * 9 * (7 * 3 * 3 + 9 * 3 + (8 + 6 * 4))'
    assert process_lark.add_first_calc(input_str) == 669060
コード例 #4
0
def test_nested_2_with_mode_addition_first():
    input_str = '5 + (8 * 3 + 9 + 3 * 4 * 3)'
    assert process_lark.add_first_calc(input_str) == 1445
コード例 #5
0
def test_nested_1_with_mode_addition_first():
    input_str = '2 * 3 + (4 * 5)'
    assert process_lark.add_first_calc(input_str) == 46
コード例 #6
0
def test_nested_0_with_mode_addition_first():
    input_str = '1 + (2 * 3) + (4 * (5 + 6))'
    assert process_lark.add_first_calc(input_str) == 51