You are here

public function ResourceComparatorTest::acceptsSucceedsProvider in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/sebastian/comparator/tests/ResourceComparatorTest.php \SebastianBergmann\Comparator\ResourceComparatorTest::acceptsSucceedsProvider()

File

vendor/sebastian/comparator/tests/ResourceComparatorTest.php, line 26

Class

ResourceComparatorTest
@coversDefaultClass SebastianBergmann\Comparator\ResourceComparator

Namespace

SebastianBergmann\Comparator

Code

public function acceptsSucceedsProvider() {
  $tmpfile1 = tmpfile();
  $tmpfile2 = tmpfile();
  return array(
    array(
      $tmpfile1,
      $tmpfile1,
    ),
    array(
      $tmpfile2,
      $tmpfile2,
    ),
    array(
      $tmpfile1,
      $tmpfile2,
    ),
  );
}