def wrap_interface(self):
     """
     Wraps the interface in an implementation specific class
     
     Verifies:
         * interface is just returned, by default this does nothing
     """
     api = TestAPI()
     module = Bar()
     wrapped = api.wrap_interface(module.foo)
     self.assertEqual(wrapped, module.foo)