Created
October 21, 2019 05:39
-
-
Save namgivu/d91dd3b2418ec8260e1b15b8bb2f1951 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import unittest | |
def setUpModule(): pass # nothing here for now | |
def tearDownModule(): pass # nothing here for now | |
class Test(unittest.TestCase): | |
def setUp(self): pass # nothing here for now | |
def tearDown(self): pass # nothing here for now | |
def test(self): | |
pass | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment