Skip to content
Snippets Groups Projects
Commit 1a889ac1 authored by Daniel Hürtgen's avatar Daniel Hürtgen
Browse files

TASK: Adjust the third argument for all three standard test assertions

parent caeabd3f
No related merge requests found
...@@ -39,9 +39,17 @@ class StandardTest extends \PHPUnit_Framework_TestCase ...@@ -39,9 +39,17 @@ class StandardTest extends \PHPUnit_Framework_TestCase
$standard = new Standard($path); $standard = new Standard($path);
$this->assertSame($name, $standard->getName(), 'getName'); $this->assertSame($name, $standard->getName(), 'The standard instance did not return the expected name.');
$this->assertSame(realpath($path), $standard->getPath(), 'getPath'); $this->assertSame(
$this->assertSame($ruleSetXmlPath, $standard->getRuleSetXmlPath(), 'getRuleSetXmlPath'); realpath($path),
$standard->getPath(),
'The standard instance did not return the expected path value.'
);
$this->assertSame(
$ruleSetXmlPath,
$standard->getRuleSetXmlPath(),
'The standard instance did not return the expected ruleset.xml path value.'
);
} }
/** /**
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment