コード例 #1
0
ファイル: __init__.py プロジェクト: mrbusta/passion-xbmc
def get_tests(config={}):
    tests = []
    import test_DSA
    tests += test_DSA.get_tests(config=config)
    import test_RSA
    tests += test_RSA.get_tests(config=config)
    return tests
コード例 #2
0
def get_tests(config={}):
    tests = []
    import test_DSA;       tests += test_DSA.get_tests(config=config)
    import test_RSA;       tests += test_RSA.get_tests(config=config)
    import test_importKey; tests += test_importKey.get_tests(config=config)
    return tests
コード例 #3
0
ファイル: __init__.py プロジェクト: Jarthong/Python-Auto
def get_tests():
    tests = []
    import test_RSA
    tests += test_RSA.get_tests()
    return tests