-
Notifications
You must be signed in to change notification settings - Fork 3
/
TestOfWebPageSuite.php
36 lines (30 loc) · 1.5 KB
/
TestOfWebPageSuite.php
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
<?php
require_once('simpletest/autorun.php');
require_once('simpletest/web_tester_islandora.php');
require_once dirname(__FILE__) . '/institution.cfg.php';
require_once dirname(__FILE__) . '/util.php';
SimpleTest::prefer(new TextReporter());
class TestOfWebSuite extends TestSuite {
function TestOfWebSuite() {
$this->TestSuite('Islandora Site Tests');
echo "Running against: " . FULL_APP_URL . "<br/><br/>\n";
#############################################################
# Tests: public access to the various Islandora sites
#############################################################
$this->addFile('web_page_tests/Security_Basic_Fedora_Test.php');
$this->addFile('web_page_tests/Security_Basic_Web_Test.php');
$this->addFile('web_page_tests/Site_Main_Test.php');
$this->addFile('web_page_tests/SiteFacultyPublicationsTest.php');
$this->addFile('web_page_tests/SiteHenryArtCollectionsTest.php');
$this->addFile('web_page_tests/SiteMayaMotulDeSanJoseArchaeologyTest.php');
$this->addFile('web_page_tests/SiteRonadhCoxTest.php');
$this->addFile('web_page_tests/SiteStudentScholarshipTest.php');
$this->addFile('web_page_tests/SiteThesesTest.php');
$this->addFile('web_page_tests/SiteWilliamsArchivesTest.php');
$this->addFile('web_page_tests/Site_Common_Battery_Test.php');
#############################################################
# Sound Effect
#############################################################
# $this->addFile('soundForTesting.php');
}
}