Skip to content

Instantly share code, notes, and snippets.

@uncoded-ro
Created January 10, 2020 08:03
Show Gist options
  • Save uncoded-ro/b85f44141936d969bd94c2197986b4ed to your computer and use it in GitHub Desktop.
Save uncoded-ro/b85f44141936d969bd94c2197986b4ed to your computer and use it in GitHub Desktop.
import unittest
from test_facultate import TestFacultate
def suite():
suite = unittest.TestSuite()
suite.addTest(TestFacultate('test_nume_facultate'))
suite.addTest(TestFacultate('test_numar_studenti'))
suite.addTest(TestFacultate('test_finantare'))
return suite
if __name__ == '__main__':
runner = unittest.TextTestRunner()
runner.run(suite())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment