test_FactoryInit.py
Go to the documentation of this file.
1 #!/usr/bin/env python
2 # -*- Python -*-
3 
4 #
5 # \file test_FactoryInit.py
6 # \brief test for RTComponent factory class
7 # \date $Date: $
8 # \author Shinji Kurihara
9 #
10 # Copyright (C) 2003-2005
11 # Task-intelligence Research Group,
12 # Intelligent Systems Research Institute,
13 # National Institute of
14 # Advanced Industrial Science and Technology (AIST), Japan
15 # All rights reserved.
16 #
17 
18 import sys
19 sys.path.insert(1,"../")
20 
21 import unittest
22 
23 from FactoryInit import *
24 
25 class TestFactoryInit(unittest.TestCase):
26 
27  def setUp(self):
28  return
29 
30  def tearDown(self):
31  return
32 
33  def test_FactoryInit(self):
34  FactoryInit()
35 
36 
37 ############### test #################
38 if __name__ == '__main__':
39  unittest.main()


openrtm_aist_python
Author(s): Shinji Kurihara
autogenerated on Thu Jun 6 2019 19:11:34