- Timestamp:
- 28 Mar 2011, 14:08:27 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/applicants/tests/test_container.py
r5682 r5885 27 27 from waeup.sirp.applicants import interfaces 28 28 from waeup.sirp.applicants.container import ( 29 ApplicantsContainer, JAMBBasedApplicantsContainer,29 ApplicantsContainer, 30 30 ) 31 31 … … 44 44 return 45 45 46 class JAMBBasedApplicantsContainerTestCase(unittest.TestCase):47 48 def test_interfaces(self):49 # Make sure the correct interfaces are implemented.50 self.assertTrue(51 verifyClass(52 interfaces.IApplicantsContainer, JAMBBasedApplicantsContainer)53 )54 self.assertTrue(55 verifyObject(56 interfaces.IApplicantsContainer, JAMBBasedApplicantsContainer())57 )58 return59 60 46 def suite(): 61 47 suite = unittest.TestSuite() 62 48 for test_case in [ 63 49 ApplicantsContainerTestCase, 64 JAMBBasedApplicantsContainerTestCase,65 50 ]: 66 51 suite.addTests(
Note: See TracChangeset for help on using the changeset viewer.