-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathautoload.php
More file actions
38 lines (38 loc) · 2.01 KB
/
autoload.php
File metadata and controls
38 lines (38 loc) · 2.01 KB
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
<?php
// @codingStandardsIgnoreFile
// @codeCoverageIgnoreStart
// this is an autogenerated file - do not edit
spl_autoload_register(
function($class) {
static $classes = null;
if ($classes === null) {
$classes = array(
'abstractcontainer' => '/dsl_selenium2/dsl/AbstractContainer.php',
'abstractmenu' => '/dsl_selenium2/dsl/AbstractMenu.php',
'abstractpage' => '/dsl_selenium2/dsl/AbstractPage.php',
'abstracttab' => '/dsl_selenium2/dsl/AbstractTab.php',
'abstractwindowform' => '/dsl_selenium2/dsl/AbstractWindowForm.php',
'applicationbasetestcase' => '/dsl_selenium2/selenium2/ApplicationBaseTestCase.php',
'basetestcase' => '/dsl_selenium2/selenium2/BaseTestCase.php',
'fillelementstest' => '/tests/Selenium2TestCase/FillElementsTest.php',
'homepage' => '/tests/Pages/HomePage.php',
'loginpage' => '/tests/Pages/LoginPage.php',
'projectbase' => '/tests/ProjectBase.php',
'selenium2_element' => '/dsl_selenium2/selenium2/Selenium2TestCase.php',
'selenium2_element_select' => '/dsl_selenium2/selenium2/Selenium2TestCase.php',
'selenium2_elementcriteria' => '/dsl_selenium2/selenium2/Selenium2TestCase.php',
'selenium2_session_cookie' => '/dsl_selenium2/selenium2/Selenium2TestCase.php',
'selenium2_session_timeouts' => '/dsl_selenium2/selenium2/Selenium2TestCase.php',
'selenium2_window' => '/dsl_selenium2/selenium2/Selenium2TestCase.php',
'selenium2testcase' => '/dsl_selenium2/selenium2/Selenium2TestCase.php',
'tableelement' => '/dsl_selenium2/dsl/TableElement.php',
'testshelper' => '/dsl_selenium2/TestsHelper.php'
);
}
$cn = strtolower($class);
if (isset($classes[$cn])) {
require __DIR__ . $classes[$cn];
}
}
);
// @codeCoverageIgnoreEnd