“PYTEST PARAMETRIZE” Kod odpowiedzi

PYTEST PARAMETRIZE

import pytest

@pytest.mark.parametrize("num, output",[(1,11),(2,22),(3,35),(4,44)])
def test_multiplication_11(num, output):
   assert 11*num == output
Thom626

PYTEST PARAMETRIZE

# content of test_expectation.py
import pytest


@pytest.mark.parametrize("test_input,expected", [("3+5", 8), ("2+4", 6), ("6*9", 42)])
def test_eval(test_input, expected):
    assert eval(test_input) == expected
Shy Shrike

Odpowiedzi podobne do “PYTEST PARAMETRIZE”

Pytania podobne do “PYTEST PARAMETRIZE”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu