Created
June 16, 2011 06:56
-
-
Save icomkid/1028806 to your computer and use it in GitHub Desktop.
Python UnitTest Template
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 | |
class TestProblem(unittest.TestCase): | |
def test_sample(self): | |
self.assertEqual(1, 1) | |
if __name__ == '__main__': | |
unittest.main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment