Home
last modified time | relevance | path

Searched refs:actual (Results 176 – 200 of 263) sorted by last modified time

1234567891011

/plugin/findologicxmlexport/vendor/sebastian/comparator/tests/
H A DObjectComparatorTest.php103 public function testAcceptsSucceeds($expected, $actual) argument
106 $this->comparator->accepts($expected, $actual)
114 public function testAcceptsFails($expected, $actual) argument
117 $this->comparator->accepts($expected, $actual)
125 public function testAssertEqualsSucceeds($expected, $actual, $delta = 0.0) argument
130 $this->comparator->assertEquals($expected, $actual, $delta);
143 public function testAssertEqualsFails($expected, $actual, $message, $delta = 0.0) argument
148 $this->comparator->assertEquals($expected, $actual, $delta);
H A DResourceComparatorTest.php75 public function testAcceptsSucceeds($expected, $actual) argument
78 $this->comparator->accepts($expected, $actual)
86 public function testAcceptsFails($expected, $actual) argument
89 $this->comparator->accepts($expected, $actual)
97 public function testAssertEqualsSucceeds($expected, $actual) argument
102 $this->comparator->assertEquals($expected, $actual);
115 public function testAssertEqualsFails($expected, $actual) argument
118 $this->comparator->assertEquals($expected, $actual);
H A DDoubleComparatorTest.php87 public function testAcceptsSucceeds($expected, $actual) argument
90 $this->comparator->accepts($expected, $actual)
98 public function testAcceptsFails($expected, $actual) argument
101 $this->comparator->accepts($expected, $actual)
109 public function testAssertEqualsSucceeds($expected, $actual, $delta = 0.0) argument
114 $this->comparator->assertEquals($expected, $actual, $delta);
127 public function testAssertEqualsFails($expected, $actual, $delta = 0.0) argument
132 $this->comparator->assertEquals($expected, $actual, $delta);
H A DNumericComparatorTest.php75 public function testAcceptsSucceeds($expected, $actual) argument
78 $this->comparator->accepts($expected, $actual)
86 public function testAcceptsFails($expected, $actual) argument
89 $this->comparator->accepts($expected, $actual)
97 public function testAssertEqualsSucceeds($expected, $actual, $delta = 0.0) argument
102 $this->comparator->assertEquals($expected, $actual, $delta);
115 public function testAssertEqualsFails($expected, $actual, $delta = 0.0) argument
120 $this->comparator->assertEquals($expected, $actual, $delta);
H A DScalarComparatorTest.php111 public function testAcceptsSucceeds($expected, $actual) argument
114 $this->comparator->accepts($expected, $actual)
122 public function testAcceptsFails($expected, $actual) argument
125 $this->comparator->accepts($expected, $actual)
133 public function testAssertEqualsSucceeds($expected, $actual, $ignoreCase = false) argument
138 $this->comparator->assertEquals($expected, $actual, 0.0, false, $ignoreCase);
151 public function testAssertEqualsFails($expected, $actual, $message) argument
156 $this->comparator->assertEquals($expected, $actual);
H A DSplObjectStorageComparatorTest.php100 public function testAcceptsFails($expected, $actual) argument
103 $this->comparator->accepts($expected, $actual)
111 public function testAssertEqualsSucceeds($expected, $actual) argument
116 $this->comparator->assertEquals($expected, $actual);
129 public function testAssertEqualsFails($expected, $actual) argument
135 $this->comparator->assertEquals($expected, $actual);
H A DTypeComparatorTest.php70 public function testAcceptsSucceeds($expected, $actual) argument
73 $this->comparator->accepts($expected, $actual)
81 public function testAssertEqualsSucceeds($expected, $actual) argument
86 $this->comparator->assertEquals($expected, $actual);
99 public function testAssertEqualsFails($expected, $actual) argument
102 $this->comparator->assertEquals($expected, $actual);
H A DArrayComparatorTest.php126 public function testAcceptsFails($expected, $actual) argument
129 $this->comparator->accepts($expected, $actual)
137 … public function testAssertEqualsSucceeds($expected, $actual, $delta = 0.0, $canonicalize = false) argument
142 $this->comparator->assertEquals($expected, $actual, $delta, $canonicalize);
155 public function testAssertEqualsFails($expected, $actual,$delta = 0.0, $canonicalize = false) argument
161 $this->comparator->assertEquals($expected, $actual, $delta, $canonicalize);
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dadvanced_legacy.rst406 Now, let's see the actual code of this class::
/plugin/findologicxmlexport/vendor/doctrine/annotations/docs/en/
H A Dannotations.rst74 In the third block, we create the actual AnnotationReader instance. Note that we also add "dummy" t…
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Metadata/Driver/
H A DBaseDriverTest.php538 private function assetMetadataEquals(PropertyMetadata $expected, PropertyMetadata $actual) argument
541 $actualVars = get_object_vars($actual);
/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/
H A DAnnotationException.php114 * @param mixed $actual
118 …c static function attributeTypeError($attributeName, $annotationName, $context, $expected, $actual) argument
126 is_object($actual) ? 'an instance of ' . get_class($actual) : gettype($actual)
/plugin/findologicxmlexport/vendor/webmozart/assert/src/
H A DAssert.php1072 $actual = 'none';
1077 $actual = get_class($e);
1082 $actual = get_class($e);
1091 $actual
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Extensions/
H A DPhptTestCase.php101 $actual = preg_replace('/\r\n/', "\n", trim($output));
113 PHPUnit_Framework_Assert::$assertion($expected, $actual);
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/Assert/
H A DFunctions.php571 * @param mixed $actual
604 * @param mixed $actual
656 * @param string $actual
688 * @param string $actual
719 * @param mixed $actual
734 * @param mixed $actual
749 * @param mixed $actual
764 * @param mixed $actual
883 * @param mixed $actual
898 * @param mixed $actual
[all …]
/plugin/findologicxmlexport/vendor/sebastian/comparator/src/
H A DDateTimeComparator.php22 * @param mixed $actual The second value to compare
25 public function accepts($expected, $actual) argument
28 ($actual instanceof \DateTime || $actual instanceof \DateTimeInterface);
35 * @param mixed $actual Second value to compare
43 …public function assertEquals($expected, $actual, $delta = 0.0, $canonicalize = false, $ignoreCase … argument
50 if ($actual < $expectedLower->sub($delta) ||
51 $actual > $expectedUpper->add($delta)) {
54 $actual,
56 $this->dateTimeToString($actual),
H A DExceptionComparator.php22 * @param mixed $actual The second value to compare
25 public function accepts($expected, $actual) argument
27 return $expected instanceof \Exception && $actual instanceof \Exception;
H A DObjectComparator.php22 * @param mixed $actual The second value to compare
25 public function accepts($expected, $actual) argument
27 return is_object($expected) && is_object($actual);
34 * @param mixed $actual Second value to compare
47 $actual,
49 $this->exporter->export($actual),
53 $this->exporter->export($actual),
65 $processed[] = array($actual, $expected);
70 if ($actual !== $expected) {
74 $this->toArray($actual),
[all …]
H A DSplObjectStorageComparator.php22 * @param mixed $actual The second value to compare
25 public function accepts($expected, $actual) argument
27 return $expected instanceof \SplObjectStorage && $actual instanceof \SplObjectStorage;
34 * @param mixed $actual Second value to compare
41 …public function assertEquals($expected, $actual, $delta = 0.0, $canonicalize = false, $ignoreCase … argument
43 foreach ($actual as $object) {
47 $actual,
49 $this->exporter->export($actual),
57 if (!$actual->contains($object)) {
60 $actual,
[all …]
H A DTypeComparator.php22 * @param mixed $actual The second value to compare
25 public function accepts($expected, $actual) argument
34 * @param mixed $actual Second value to compare
41 …public function assertEquals($expected, $actual, $delta = 0.0, $canonicalize = false, $ignoreCase … argument
43 if (gettype($expected) != gettype($actual)) {
46 $actual,
53 $this->exporter->shortenedExport($actual),
H A DNumericComparator.php22 * @param mixed $actual The second value to compare
25 public function accepts($expected, $actual) argument
29 return is_numeric($expected) && is_numeric($actual) &&
30 !(is_double($expected) || is_double($actual)) &&
31 !(is_string($expected) && is_string($actual));
38 * @param mixed $actual Second value to compare
47 if (is_infinite($actual) && is_infinite($expected)) {
52 (is_nan($actual) or is_nan($expected)) ||
53 abs($actual - $expected) > $delta) {
56 $actual,
[all …]
H A DResourceComparator.php22 * @param mixed $actual The second value to compare
25 public function accepts($expected, $actual) argument
27 return is_resource($expected) && is_resource($actual);
34 * @param mixed $actual Second value to compare
41 …public function assertEquals($expected, $actual, $delta = 0.0, $canonicalize = false, $ignoreCase … argument
43 if ($actual != $expected) {
46 $actual,
48 $this->exporter->export($actual)
H A DScalarComparator.php22 * @param mixed $actual The second value to compare
26 public function accepts($expected, $actual) argument
29 (is_scalar($actual) xor null === $actual))
31 … || (is_string($expected) && is_object($actual) && method_exists($actual, '__toString'))
39 * @param mixed $actual Second value to compare
49 $actualToCompare = $actual;
53 if (is_string($expected) || is_string($actual)) {
67 $actual,
69 $this->exporter->export($actual),
77 $actual,
[all …]
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/
H A DObjectStateToken.php61 $actual = call_user_func(array($argument, $this->name));
64 $this->value, $actual
68 $comparator->assertEquals($this->value, $actual);
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/
H A DXML.php30 * @param string|DOMDocument $actual
38 …public static function load($actual, $isHtml = false, $filename = '', $xinclude = false, $strict =… argument
40 if ($actual instanceof DOMDocument) {
41 return $actual;
44 if (!is_string($actual)) {
45 throw new PHPUnit_Framework_Exception('Could not load XML from ' . gettype($actual));
48 if ($actual === '') {
71 $loaded = $document->loadHTML($actual);
73 $loaded = $document->loadXML($actual);

1234567891011