22 lines
383 B
Python
22 lines
383 B
Python
class KTKTests:
|
|
#def test_adding_two_ints_returns_correct_result(self):
|
|
# assert alter(1, 2) == 3
|
|
# pass
|
|
|
|
def test_one(self):
|
|
assert 1 == 1
|
|
|
|
def test_two(self):
|
|
expect = (1, 2, 3)
|
|
actual = (1, 2, 3)
|
|
|
|
|
|
def test_adsasd():
|
|
expect = (1, 2, 3)
|
|
actual = (1, 2, 3)
|
|
|
|
|
|
def test_aasssd():
|
|
expect = (1, 2, 3)
|
|
actual = (1, 2, 3)
|