All checks were successful
Python unit tests / unittests (push) Successful in 4s
22 lines
419 B
Python
22 lines
419 B
Python
import unittest
|
|
|
|
from src.Ex4 import computeNbrOfDifferentSequences
|
|
|
|
|
|
class MyTestCase(unittest.TestCase):
|
|
def test_simple1(self):
|
|
self.assertEqual(
|
|
computeNbrOfDifferentSequences(1, 6, 3),
|
|
1
|
|
)
|
|
|
|
def test_simple2(self):
|
|
self.assertEqual(
|
|
computeNbrOfDifferentSequences(2, 6, 7),
|
|
6
|
|
)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|