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.
 
 
 

21 lines
608 B

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