26 lines
733 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. """
  8. import utils
  9. TODO: find where the hell is the missing utils package what is supposed to contain the MatchTestLoader()
  10. import utils
  11. def makeTestSuite():
  12. suite = unittest.TestSuite()
  13. suite.addTest(test_wsdl.makeTestSuite("services_by_file"))
  14. return suite
  15. def main():
  16. loader = utils.MatchTestLoader(True, None, "makeTestSuite")
  17. unittest.main(defaultTest="makeTestSuite", testLoader=loader)
  18. """
  19. if __name__ == "__main__":
  20. main()