00001 ############################################################################ 00002 # Joshua R. Boverhof, David W. Robertson, LBNL 00003 # See LBNLCopyright for copyright notice! 00004 ########################################################################### 00005 import unittest 00006 import test_wsdl 00007 import utils 00008 00009 def makeTestSuite(): 00010 suite = unittest.TestSuite() 00011 suite.addTest(test_wsdl.makeTestSuite("services_by_file")) 00012 return suite 00013 00014 def main(): 00015 loader = utils.MatchTestLoader(True, None, "makeTestSuite") 00016 unittest.main(defaultTest="makeTestSuite", testLoader=loader) 00017 00018 if __name__ == "__main__" : main() 00019 00020