summaryrefslogtreecommitdiff
path: root/scripts/dev/generate-phpt/src/gtClassMap.php
blob: 2a359082f33fa5371c6754937b7e975241318f7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php

 $gtClassMap = array(

    'gtCodeSnippet'                 => 'gtCodeSnippet.php',
    'gtTestSubject'                 => 'gtTestSubject.php',
    'gtFunction'                    => 'gtFunction.php',
    'gtMethod'                      => 'gtMethod.php',
    'gtTestCaseWriter'              => 'gtTestCaseWriter.php',
    'gtText'                        => 'gtText.php',



    'gtCommandLineOptions'          => 'setup/gtCommandLineOptions.php',
    'gtOptionalSections'            => 'setup/gtOptionalSections.php',
    'gtMissingArgumentException'    => 'setup/exceptions/gtMissingArgumentException.php',
    'gtUnknownOptionException'      => 'setup/exceptions/gtUnknownOptionException.php',
    'gtUnknownSectionException'      => 'setup/exceptions/gtUnknownSectionException.php',
    'gtMissingOptionsException'     => 'setup/exceptions/gtMissingOptionsException.php',

    'gtPreCondition'                => 'setup/gtPreCondition.php',
    'gtPreConditionList'            => 'setup/gtPreConditionList.php',
    'gtIsSpecifiedTestType'         => 'setup/preconditions/gtIsSpecifiedTestType.php',
    'gtIfClassHasMethod'            => 'setup/preconditions/gtIfClassHasMethod.php',
    'gtIsSpecifiedFunctionOrMethod' => 'setup/preconditions/gtIsSpecifiedFunctionOrMethod.php',
    'gtIsValidClass'                => 'setup/preconditions/gtIsValidClass.php',
    'gtIsValidMethod'               => 'setup/preconditions/gtIsValidMethod.php',
    'gtIsValidFunction'             => 'setup/preconditions/gtIsValidFunction.php',


     'gtTestCase'                   => 'testcase/gtTestCase.php',
     'gtVariationTestCase'          => 'testcase/gtVariationTestCase.php',
     'gtVariationTestCaseFunction'  => 'testcase/gtVariationTestCaseFunction.php',
     'gtVariationTestCaseMethod'    => 'testcase/gtVariationTestCaseMethod.php',

     'gtBasicTestCase'              => 'testcase/gtBasicTestCase.php',
     'gtBasicTestCaseFunction'      => 'testcase/gtBasicTestCaseFunction.php',
     'gtBasicTestCaseMethod'        => 'testcase/gtBasicTestCaseMethod.php',

     'gtErrorTestCase'              => 'testcase/gtErrorTestCase.php',
     'gtErrorTestCaseFunction'      => 'testcase/gtErrorTestCaseFunction.php',
     'gtErrorTestCaseMethod'        => 'testcase/gtErrorTestCaseMethod.php',

     'gtVariationContainer'         => 'testcase/gtVariationContainer.php',
     'gtVariationContainerMethod'   => 'testcase/gtVariationContainerMethod.php',
     'gtVariationContainerFunction' => 'testcase/gtVariationContainerFunction.php',
 );
?>