aboutsummaryrefslogtreecommitdiffstats
path: root/build/integration/features/bootstrap/CapabilitiesContext.php
diff options
context:
space:
mode:
authorSergio Bertolin <sbertolin@solidgear.es>2015-12-03 12:54:44 +0000
committerSergio Bertolin <sbertolin@solidgear.es>2015-12-03 12:54:44 +0000
commitc744b30b3bd610cb2b276bb274170fb6e0d03294 (patch)
tree45cc5e3a8b08d15c082e25934455795c1e413b29 /build/integration/features/bootstrap/CapabilitiesContext.php
parente01e894b985d3c8ee88da755abf7d5c139787705 (diff)
downloadnextcloud-server-c744b30b3bd610cb2b276bb274170fb6e0d03294.tar.gz
nextcloud-server-c744b30b3bd610cb2b276bb274170fb6e0d03294.zip
Changed fail for assertEquals and removed fields which weren't checked
Diffstat (limited to 'build/integration/features/bootstrap/CapabilitiesContext.php')
-rw-r--r--build/integration/features/bootstrap/CapabilitiesContext.php20
1 files changed, 12 insertions, 8 deletions
diff --git a/build/integration/features/bootstrap/CapabilitiesContext.php b/build/integration/features/bootstrap/CapabilitiesContext.php
index a1a14aa3bb3..4e200bdf421 100644
--- a/build/integration/features/bootstrap/CapabilitiesContext.php
+++ b/build/integration/features/bootstrap/CapabilitiesContext.php
@@ -29,15 +29,19 @@ class CapabilitiesContext implements Context, SnippetAcceptingContext {
foreach ($fd as $row) {
if ($row['value'] === ''){
- $answeredValue = (string)$capabilitiesXML->$row['capability']->$row['feature']->$row['value_or_subfeature'];
- if ( !$answeredValue === $row['value_or_subfeature']){
- PHPUnit_Framework_Assert::fail("Answered value $answeredValue is different to expected " . $row['value_or_subfeature']);
- }
+ $answeredValue = (string)$capabilitiesXML->$row['capability']->$row['feature'];
+ PHPUnit_Framework_Assert::assertEquals(
+ $answeredValue,
+ $row['value_or_subfeature'],
+ "Failed field " . $row['capability'] . " " . $row['feature']
+ );
} else{
- $answeredValue = (string)$capabilitiesXML->$row['capability']->$row['feature']->$row['value_or_subfeature']->$row['value'];
- if ( !$answeredValue === $row['value']){
- PHPUnit_Framework_Assert::fail("Answered value $answeredValue is different to expected " . $row['value']);
- }
+ $answeredValue = (string)$capabilitiesXML->$row['capability']->$row['feature']->$row['value_or_subfeature'];
+ PHPUnit_Framework_Assert::assertEquals(
+ $answeredValue,
+ $row['value'],
+ "Failed field: " . $row['capability'] . " " . $row['feature'] . " " . $row['value_or_subfeature']
+ );
}
}
}