20 lines
261 B
Python
20 lines
261 B
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
Created on 10.11.2014
|
|
|
|
@author: sebastianw
|
|
'''
|
|
import unittest
|
|
|
|
|
|
class Test(unittest.TestCase):
|
|
|
|
|
|
def testName(self):
|
|
pass
|
|
|
|
|
|
if __name__ == "__main__":
|
|
#import sys;sys.argv = ['', 'Test.testName']
|
|
unittest.main()
|