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.
 
 
 

22 lines
548 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. def makeTestSuite():
  9. suite = unittest.TestSuite()
  10. suite.addTest(test_wsdl.makeTestSuite("services_by_http"))
  11. return suite
  12. def test_runner():
  13. unittest.main(defaultTest="makeTestSuite")
  14. if __name__ == "__main__":
  15. test_runner()