public function ObjectComparatorTest::acceptsSucceedsProvider in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/sebastian/comparator/tests/ObjectComparatorTest.php \SebastianBergmann\Comparator\ObjectComparatorTest::acceptsSucceedsProvider()
File
- vendor/
sebastian/ comparator/ tests/ ObjectComparatorTest.php, line 29
Class
- ObjectComparatorTest
- @coversDefaultClass SebastianBergmann\Comparator\ObjectComparator
Namespace
SebastianBergmann\ComparatorCode
public function acceptsSucceedsProvider() {
return array(
array(
new TestClass(),
new TestClass(),
),
array(
new stdClass(),
new stdClass(),
),
array(
new stdClass(),
new TestClass(),
),
);
}