summaryrefslogtreecommitdiff
path: root/python/testData/testRunner/env/pytest/test1.py
blob: 65016345eadee700a353384d882e827f1e75ba76 (plain)
1
2
3
4
5
6
7
8
9
class TestPyTest:
    def testOne(self):
        assert 4 == 2*2

    def testTwo(self):
        assert True

def testThree():
    assert 4 == 2*2