- Timestamp:
- 13 Feb 2015, 10:15:44 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/ikobacustom.pcn/trunk/src/ikobacustom/pcn/customers/tests/test_contract.py
r12604 r12611 36 36 IPPMVLContract, 37 37 RPPMVLContract, 38 APPITContract, 38 39 ) 39 40 from ikobacustom.pcn.customers.interfaces import ( … … 44 45 IIPPMVLContract, 45 46 IRPPMVLContract, 47 IAPPITContract, 46 48 ) 47 49 … … 64 66 verify.verifyObject(IIPPMVLContract, IPPMVLContract()) 65 67 verify.verifyObject(ICustomerNavigation, IPPMVLContract()) 68 verify.verifyObject(IAPPITContract, APPITContract()) 69 verify.verifyObject(ICustomerNavigation, APPITContract()) 66 70 return 67 71 … … 104 108 self.assertEqual(container[id6], contract6) 105 109 self.assertEqual(contract6.class_name, 'RPPMVLContract') 110 111 contract7= createObject(u'waeup.APPITContract') 112 id7 = contract7.contract_id 113 container.addContract(contract7) 114 self.assertEqual(container[id7], contract7) 115 self.assertEqual(contract7.class_name, 'APPITContract') 106 116 return
Note: See TracChangeset for help on using the changeset viewer.