Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 import sys
00019 sys.path.insert(1,"../")
00020
00021 import unittest
00022
00023 from FactoryInit import *
00024
00025 class TestFactoryInit(unittest.TestCase):
00026
00027 def setUp(self):
00028 return
00029
00030 def tearDown(self):
00031 return
00032
00033 def test_FactoryInit(self):
00034 FactoryInit()
00035
00036
00037
00038 if __name__ == '__main__':
00039 unittest.main()