Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2018-08-12 15:46:22 +0300
committerArthur Schiwon <blizzz@arthur-schiwon.de>2018-08-12 15:46:22 +0300
commit96f5210fc471055411babf6da5346278b049e8a6 (patch)
tree4edb1314e33b886863ba6030af57794cf52f4825 /build/integration
parent59e35e3bf7fc46980bd6d415e1a56c6be81c6899 (diff)
Phpunit changed, use proper Assert class
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'build/integration')
-rw-r--r--build/integration/features/bootstrap/LDAPContext.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/build/integration/features/bootstrap/LDAPContext.php b/build/integration/features/bootstrap/LDAPContext.php
index 30e3d1a3d2f..959ff628b1f 100644
--- a/build/integration/features/bootstrap/LDAPContext.php
+++ b/build/integration/features/bootstrap/LDAPContext.php
@@ -141,9 +141,9 @@ class LDAPContext implements Context {
$extractedIDsArray = json_decode(json_encode($listReturnedElements), 1);
foreach($expectations->getRows() as $expectation) {
if((int)$expectation[1] === 1) {
- PHPUnit_Framework_Assert::assertContains($expectation[0], $extractedIDsArray);
+ Assert::assertContains($expectation[0], $extractedIDsArray);
} else {
- PHPUnit_Framework_Assert::assertNotContains($expectation[0], $extractedIDsArray);
+ Assert::assertNotContains($expectation[0], $extractedIDsArray);
}
}
}
@@ -155,10 +155,10 @@ class LDAPContext implements Context {
try {
$this->loggingInUsingWebAs($login);
} catch (\GuzzleHttp\Exception\ServerException $e) {
- PHPUnit_Framework_Assert::assertEquals(500, $e->getResponse()->getStatusCode());
+ Assert::assertEquals(500, $e->getResponse()->getStatusCode());
return;
}
- PHPUnit_Framework_Assert::assertTrue(false, 'expected Exception not received');
+ Assert::assertTrue(false, 'expected Exception not received');
}
/**
@@ -174,7 +174,7 @@ class LDAPContext implements Context {
}
}
error_log('result array ' . json_encode($extractedIDsArray)); ## TODO remove debug statement
- PHPUnit_Framework_Assert::assertSame((int)$expectedCount, $uidsFound);
+ Assert::assertSame((int)$expectedCount, $uidsFound);
}
/**
@@ -183,10 +183,10 @@ class LDAPContext implements Context {
public function theRecordFieldsShouldMatch(TableNode $expectations) {
foreach($expectations->getRowsHash() as $k => $v) {
$value = (string)simplexml_load_string($this->response->getBody())->data[0]->$k;
- PHPUnit_Framework_Assert::assertEquals($v, $value);
+ Assert::assertEquals($v, $value);
}
$backend = (string)simplexml_load_string($this->response->getBody())->data[0]->backend;
- PHPUnit_Framework_Assert::assertEquals('LDAP', $backend);
+ Assert::assertEquals('LDAP', $backend);
}
}