summaryrefslogtreecommitdiffstats
path: root/install/ui/test/all_tests.html
blob: 081fb5a66acb1e1b5cf6491e347e0587d4b99f34 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html>
<head>
    <title>Complete Test Suite</title>
    <link rel="stylesheet" href="qunit.css" type="text/css" media="screen">

    <script type="text/javascript" src="../js/libs/loader.js"></script>
    <script type="text/javascript" src="../js/libs/jquery.js"></script>
    <script>
        // import qunit.js only in situations it is not imported by grunt-contrib-qunit
        // allows to run tests using grunt and using Firefox (FF needs explicit import)
        if (window.QUnit === undefined) {
            var s = document.createElement("script");
            s.type = "text/javascript";
            s.src = "qunit.js";
            $("head script:last-of-type").before(s); // insert qunit.js import before dojo import
        }
    </script>
    <script type="text/javascript" src="../js/libs/jquery.ordered-map.js"></script>
    <script type="text/javascript" src="../js/libs/bootstrap.js"></script>
    <script type="text/javascript" src="config.js"></script>
    <script class='insertBefore' type="text/javascript" src="../js/dojo/dojo.js"></script>

    <script type="text/javascript">
        require([
            'test/ordered_map_tests',
            'test/ipa_tests',
            'test/details_tests',
            'test/entity_tests',
            'test/association_tests',
            'test/certificate_tests',
            'test/aci_tests',
            'test/widget_tests',
            'test/ip_tests',
            'test/utils_tests',
            'test/build_tests',
            'test/binding_tests',
        ], function(om, ipa, details, entity, as, cert, aci, wid, ip, ut, bt, bi){
            QUnit.start();
            om();
            ipa();
            details();
            entity();
            as();
            cert();
            aci();
            wid();
            ip();
            ut();
            bt();
            bi();
        });
    </script>
</head>
<body>
    <h1 id="qunit-header">Complete Test Suite</h1>
    <h2 id="qunit-banner"></h2>
    <div id="qunit-testrunner-toolbar"></div>
    <h2 id="qunit-userAgent"></h2>
    <ol id="qunit-tests"></ol>
    <div id="qunit-fixture"></div>
</body>
</html>