11 lines
171 B
Python
11 lines
171 B
Python
import unittest
|
|
|
|
|
|
class SampleTest(unittest.TestCase):
|
|
|
|
def test_success(self):
|
|
self.assertTrue(True)
|
|
|
|
def test_fail(self):
|
|
self.assertTrue(False)
|