コード例 #1
0
ファイル: __init__.py プロジェクト: AeonSaber/first_app
def get_tests(config={}):
    tests = []
    import test_FortunaAccumulator
    tests += test_FortunaAccumulator.get_tests(config=config)
    import test_FortunaGenerator
    tests += test_FortunaGenerator.get_tests(config=config)
    import test_SHAd256
    tests += test_SHAd256.get_tests(config=config)
    return tests
コード例 #2
0
ファイル: __init__.py プロジェクト: Jarthong/Python-Auto
def get_tests():
    tests = []
    import test_FortunaAccumulator
    tests += test_FortunaAccumulator.get_tests()
    import test_FortunaGenerator
    tests += test_FortunaGenerator.get_tests()
    import test_SHAd256
    tests += test_SHAd256.get_tests()
    return tests
コード例 #3
0
def get_tests(config={}):
    tests = []
    import test_FortunaAccumulator

    tests += test_FortunaAccumulator.get_tests(config=config)
    import test_FortunaGenerator

    tests += test_FortunaGenerator.get_tests(config=config)
    import test_SHAd256

    tests += test_SHAd256.get_tests(config=config)
    return tests
コード例 #4
0
def get_tests():
    tests = []
    import test_FortunaAccumulator; tests += test_FortunaAccumulator.get_tests()
    import test_FortunaGenerator;   tests += test_FortunaGenerator.get_tests()
    import test_SHAd256;            tests += test_SHAd256.get_tests()
    return tests