Last active
December 15, 2015 14:59
-
-
Save liudong/5278212 to your computer and use it in GitHub Desktop.
Python: Empty unit test
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
#!/usr/bin/env python | |
# -*- coding: UTF-8 -*- | |
import unittest | |
class simpleTest(unittest.TestCase): | |
def setUp(self): | |
pass | |
def tearDown(self): | |
pass | |
def testExample(self): | |
self.assertEqual(1, 1) | |
if '__main__' == __name__: | |
unittest.main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment