Files
pytest_gui_status/tests/testcases/case_2/test_1.py
T

18 lines
155 B
Python

import pytest
def test_pass_1():
assert 1
def test_fail_1():
assert 0
def test_fail_2():
assert 0
def test_skip_1():
pytest.skip()