You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

23 lines
662 B

  1. #!/usr/bin/env python
  2. ############################################################################
  3. # Joshua R. Boverhof, David W. Robertson, LBNL
  4. # See LBNLCopyright for copyright notice!
  5. ###########################################################################
  6. import unittest
  7. import test_wsdl
  8. import utils
  9. def makeTestSuite():
  10. suite = unittest.TestSuite()
  11. suite.addTest(test_wsdl.makeTestSuite(("no_schemas", "simpleTypes", "services_by_http")))
  12. return suite
  13. def main():
  14. loader = utils.MatchTestLoader(True, None, "makeTestSuite")
  15. unittest.main(defaultTest="makeTestSuite", testLoader=loader)
  16. if __name__ == "__main__" : main()