-
Notifications
You must be signed in to change notification settings - Fork 3
/
TestNarrowSuite.php
40 lines (31 loc) · 1.42 KB
/
TestNarrowSuite.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
37
38
39
<?php
require_once('simpletest/autorun.php');
require_once('simpletest/web_tester_islandora.php');
require_once dirname(__FILE__) . '/util.php';
SimpleTest::prefer(new TextReporter());
class TestNarrowSuite extends TestSuite {
function TestNarrowSuite() {
$this->TestSuite('Narrowly focused tests - changes');
#############################################################
# Tests
#############################################################
// $this->addFile('web_page_tests/Security_Basic_Fedora_Test.php');
$this->addFile('web_page_tests/SiteThesesTest.php');
/*
$this->addFile('web_page_tests/Security_Basic_Web_Test.php');
$this->addFile('web_page_tests/Site_Common_Battery_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');
*/
#############################################################
# Sound Effect
#############################################################
# $this->addFile('soundForTesting.php');
}
}