26 lines
311 B
Python
26 lines
311 B
Python
'''
|
|
Created on 10.11.2014
|
|
|
|
@author: sebastianw
|
|
'''
|
|
import unittest
|
|
|
|
|
|
class Test(unittest.TestCase):
|
|
|
|
|
|
def setUp(self):
|
|
pass
|
|
|
|
|
|
def tearDown(self):
|
|
pass
|
|
|
|
|
|
def testName(self):
|
|
pass
|
|
|
|
|
|
if __name__ == "__main__":
|
|
#import sys;sys.argv = ['', 'Test.testName']
|
|
unittest.main() |