Skip to content

Commit

Permalink
Fix the tests again
Browse files Browse the repository at this point in the history
  • Loading branch information
nickvergessen committed May 25, 2016
1 parent b9a26bc commit 2c0743c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,6 @@ protected function case3() {
}

require_once(__DIR__ . '/../setup-scripts/config.php');
$test = new IntegrationBackupServer($host, $port, $adn, $apwd, $bdn);
$test = new IntegrationTestBackupServer($host, $port, $adn, $apwd, $bdn);
$test->init();
$test->run();
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,6 @@ protected function case6() {
}

require_once(__DIR__ . '/../setup-scripts/config.php');
$test = new IntegrationConnect($host, $port, $adn, $apwd, $bdn);
$test = new IntegrationTestConnect($host, $port, $adn, $apwd, $bdn);
$test->init();
$test->run();
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@ protected function case2() {
}

require_once(__DIR__ . '/../setup-scripts/config.php');
$test = new IntegrationTestUserHome($host, $port, $adn, $apwd, $bdn);
$test = new IntegrationTestCountUsersByLoginName($host, $port, $adn, $apwd, $bdn);
$test->init();
$test->run();
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,6 @@ protected function case2() {
}

require_once(__DIR__ . '/../setup-scripts/config.php');
$test = new IntegrationTestUserHome($host, $port, $adn, $apwd, $bdn);
$test = new IntegrationTestFetchUsersByLoginName($host, $port, $adn, $apwd, $bdn);
$test->init();
$test->run();
3 changes: 3 additions & 0 deletions tests/apps.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ function loadDirectory($path) {
if (strpos($path, 'integration')) {
return;
}
if (strpos($path, 'Integration')) {
return;
}
if ($dh = opendir($path)) {
while ($name = readdir($dh)) {
if ($name[0] !== '.') {
Expand Down

0 comments on commit 2c0743c

Please sign in to comment.