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 InPortConnector import *
00024
00025 import RTC, RTC__POA
00026 import OpenRTM_aist
00027
00028
00029 class TestInPortConnector(unittest.TestCase):
00030 def setUp(self):
00031 self._prof = OpenRTM_aist.ConnectorBase.Profile("name","id",[],OpenRTM_aist.Properties())
00032 self._ic = InPortConnector(self._prof,None)
00033 return
00034
00035 def test_profile(self):
00036 self.assertEqual(self._ic.profile(),self._prof)
00037 return
00038
00039 def test_id(self):
00040 self.assertEqual(self._ic.id(),"id")
00041 return
00042
00043 def test_name(self):
00044 self.assertEqual(self._ic.name(), "name")
00045
00046 def test_getBuffer(self):
00047 self.assertEqual(self._ic.getBuffer(),None)
00048
00049
00050
00051
00052 if __name__ == '__main__':
00053 unittest.main()
00054