Home
last modified time | relevance | path

Searched refs:expected (Results 226 – 250 of 514) sorted by path

12345678910>>...21

/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Framework/Constraint/
H A DArraySubsetTest.php14 * @param bool $expected
20 public function testEvaluate($expected, $subset, $other, $strict) argument
24 $this->assertSame($expected, $constraint->evaluate($other, '', true));
H A DIsJsonTest.php16 public function testEvaluate($expected, $jsonOther) argument
19 $this->assertEquals($expected, $constraint->evaluate($jsonOther, '', true));
H A DJsonMatchesTest.php16 public function testEvaluate($expected, $jsonOther, $jsonValue) argument
19 $this->assertEquals($expected, $constraint->evaluate($jsonOther, '', true));
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Framework/Constraint/JsonMatches/
H A DErrorMessageProviderTest.php16 public function testTranslateTypeToPrefix($expected, $type) argument
19 $expected,
27 public function testDetermineJsonError($expected, $error, $prefix) argument
30 $expected,
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Framework/
H A DConstraintTest.php827 public function testConstraintIsEqual2($expected, $actual, $message) argument
829 $constraint = PHPUnit_Framework_Assert::equalTo($expected);
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Regression/GitHub/2137/
H A DIssue2137Test.php9 public function testBrandService($provided, $expected) argument
11 $this->assertSame($provided, $expected);
29 public function testSomethingElseInvalid($provided, $expected) argument
31 $this->assertSame($provided, $expected);
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Regression/GitHub/
H A D244.phpt23 Failed asserting that '123StringCode' is equal to expected exception code 'OtherString'.
26 Failed asserting that '123StringCode' is equal to expected exception code 123.
29 Failed asserting that 123 is equal to expected exception code '123String'.
H A D2731.phpt2 GH-2731: Empty exception message cannot be expected
H A D433.phpt2 GH-433: expectOutputString not completely working as expected
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/TextUI/
H A Ddataprovider-log-xml-isolation.phpt25 Failed asserting that 2 matches expected 3.
41 Failed asserting that 2 matches expected 3.
H A Ddataprovider-log-xml.phpt24 Failed asserting that 2 matches expected 3.
40 Failed asserting that 2 matches expected 3.
H A Dfailure-isolation.phpt36 Failed asserting that 2 matches expected 1.
55 Failed asserting that 'bar' matches expected null.
96 Failed asserting that 2 matches expected 1.
H A Dfailure-reverse-list.phpt63 Failed asserting that 2 matches expected 1.
104 Failed asserting that 'bar' matches expected null.
123 Failed asserting that 2 matches expected 1.
H A Dfailure.phpt35 Failed asserting that 2 matches expected 1.
54 Failed asserting that 'bar' matches expected null.
95 Failed asserting that 2 matches expected 1.
H A Dphpt-env.phpt12 _files/phpt-env.expected.txt
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Util/
H A DGetoptTest.php22 $expected = [
34 $this->assertEquals($expected, $actual);
46 $expected = [
58 $this->assertEquals($expected, $actual);
H A DTestTest.php590 $expected = [
594 $expected = [];
596 $expected = false;
598 $expected = [
602 $expected = [TEST_FILES_PATH . 'CoveredClass.php' => $lines];
606 $expected,
H A DXMLTest.php79 $expected = [
88 $this->assertSame($expected, $actual);
/plugin/findologicxmlexport/vendor/sebastian/comparator/src/
H A DArrayComparator.php21 * @param mixed $expected The first value to compare
25 public function accepts($expected, $actual) argument
27 return is_array($expected) && is_array($actual);
33 * @param mixed $expected First value to compare
42 …public function assertEquals($expected, $actual, $delta = 0.0, $canonicalize = false, $ignoreCase … argument
45 sort($expected);
53 foreach ($expected as $key => $value) {
118 $expected,
H A DComparator.php46 * @param mixed $expected The first value to compare
50 abstract public function accepts($expected, $actual); argument
55 * @param mixed $expected First value to compare
63 …abstract public function assertEquals($expected, $actual, $delta = 0.0, $canonicalize = false, $ig… argument
H A DComparisonFailure.php24 protected $expected; variable in SebastianBergmann\\Comparator\\ComparisonFailure
59 * @param mixed $expected Expected value retrieved.
67 …public function __construct($expected, $actual, $expectedAsString, $actualAsString, $identical = f… argument
69 $this->expected = $expected;
89 return $this->expected;
H A DDOMNodeComparator.php24 * @param mixed $expected The first value to compare
28 public function accepts($expected, $actual) argument
30 return $expected instanceof DOMNode && $actual instanceof DOMNode;
36 * @param mixed $expected First value to compare
45 …public function assertEquals($expected, $actual, $delta = 0.0, $canonicalize = false, $ignoreCase … argument
47 $expectedAsString = $this->nodeToText($expected, true, $ignoreCase);
51 if ($expected instanceof DOMDocument) {
58 $expected,
H A DDateTimeComparator.php21 * @param mixed $expected The first value to compare
25 public function accepts($expected, $actual) argument
27 return ($expected instanceof \DateTime || $expected instanceof \DateTimeInterface) &&
34 * @param mixed $expected First value to compare
43 …public function assertEquals($expected, $actual, $delta = 0.0, $canonicalize = false, $ignoreCase … argument
47 $expectedLower = clone $expected;
48 $expectedUpper = clone $expected;
53 $expected,
55 $this->dateTimeToString($expected),
H A DDoubleComparator.php28 * @param mixed $expected The first value to compare
32 public function accepts($expected, $actual) argument
34 …return (is_double($expected) || is_double($actual)) && is_numeric($expected) && is_numeric($actual…
40 * @param mixed $expected First value to compare
48 …public function assertEquals($expected, $actual, $delta = 0.0, $canonicalize = false, $ignoreCase … argument
54 parent::assertEquals($expected, $actual, $delta, $canonicalize, $ignoreCase);
H A DExceptionComparator.php21 * @param mixed $expected The first value to compare
25 public function accepts($expected, $actual) argument
27 return $expected instanceof \Exception && $actual instanceof \Exception;

12345678910>>...21