mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 08:00:18 +07:00
(cherry picked from commit 202d5a6aadd282fb5144d16039e5661c22d567ec) GitOrigin-RevId: c290897d0eff63f4e4192d7368c272e9a4e73ba8
20 lines
393 B
Python
20 lines
393 B
Python
import pytest
|
|
|
|
|
|
class TestClass:
|
|
@pytest.mark.skip
|
|
def test_add_1(self):
|
|
assert 100 + 200 == 400, "failed"
|
|
|
|
@pytest.mark.skip
|
|
def test_add_2(self):
|
|
assert 100 + 200 == 300, "failed"
|
|
|
|
@pytest.mark.xfail
|
|
def test_add_3(self):
|
|
assert 15 + 13 == 28, "failed"
|
|
|
|
@pytest.mark.xfail
|
|
def test_add_4(self):
|
|
assert 15 + 13 == 100, "failed"
|