Example #1
0
def avgAppTestSuite(tests):
    availableTests = (
            'testMinimal',
            'testAvgDeploy',
            'testDebugWindowSize',
            'testScreenshot',
            'testGraphs',
            'testToggleKeys',
            'testFakeFullscreen',
    )
    return testcase.createAVGTestSuite(availableTests, AVGAppTestCase, tests)
Example #2
0
def avgAppTestSuite(tests):
    availableTests = (
        'testMinimal',
        'testAvgDeploy',
        'testDebugWindowSize',
        'testScreenshot',
        'testGraphs',
        'testToggleKeys',
        'testFakeFullscreen',
    )
    return testcase.createAVGTestSuite(availableTests, AVGAppTestCase, tests)
Example #3
0
def avgAppTestSuite(tests):
    availableTests = (
        "testMinimal",
        "testAvgDeploy",
        "testDebugWindowSize",
        "testScreenshot",
        "testGraphs",
        "testToggleKeys",
        "testFakeFullscreen",
    )
    return testcase.createAVGTestSuite(availableTests, AVGAppTestCase, tests)
def appTestSuite(tests):
    availableTests = (
        "testSettingsOptions",
        "testSettingsTypes",
        "testSettingsSet",
        "testSettingsHasOption",
        "testSettingsArgvExtender",
        "testSettingsKargsExtender",
        "testAppAdditionalSettings",
        "testAppRuntimeSettings",
        "testAppRuntimeSettingsFail",
        "testAppInstance",
        "testAppResolution",
        "testAppDefaultWindowSize",
        "testAppFullscreen",
        "testAppRotation",
        "testScreenshot",
        "testKeyboardManagerKeyname",
        "testKeyboardManagerScancode",
        "testKeyboardManagerText",
    )
    return testcase.createAVGTestSuite(availableTests, AppTestCase, tests)
def appTestSuite(tests):
    availableTests = (
        'testSettingsOptions',
        'testSettingsTypes',
        'testSettingsSet',
        'testSettingsHasOption',
        'testSettingsArgvExtender',
        'testSettingsKargsExtender',
        'testAppAdditionalSettings',
        'testAppRuntimeSettings',
        'testAppRuntimeSettingsFail',
        'testAppInstance',
        'testAppResolution',
        'testAppDefaultWindowSize',
        'testAppFullscreen',
        'testAppRotation',
        'testScreenshot',
        'testKeyboardManagerKeyname',
        'testKeyboardManagerScancode',
        'testKeyboardManagerText',
    )
    return testcase.createAVGTestSuite(availableTests, AppTestCase, tests)
Example #6
0
def appTestSuite(tests):
    availableTests = (
            'testSettingsOptions',
            'testSettingsTypes',
            'testSettingsSet',
            'testSettingsArgvExtender',
            'testSettingsKargsExtender',
            'testAppAdditionalSettings',
            'testAppRuntimeSettings',
            'testAppRuntimeSettingsFail',
            'testAppInstance',
            'testAppResolution',
            'testAppDefaultWindowSize',
            'testAppFullscreen',
            'testAppRotation',
            'testScreenshot',
            'testKeyboardManagerPlain',
            'testKeyboardManagerPlainMod',
            'testKeyboardManagerUnicodeBinary',
            'testKeyboardManagerUnicodeExplicit',
            'testKeyboardManagerUnicodeMod',
    )
    return testcase.createAVGTestSuite(availableTests, AppTestCase, tests)