function BigPipeTest::assertSetsEqual
Asserts whether arrays A and B are equal, when treated as sets.
@todo This method is broken. Fix it in https://www.drupal.org/project/drupal/issues/3144926
@internal
2 calls to BigPipeTest::assertSetsEqual()
- BigPipeTest::assertBigPipeNoJsPlaceholders in core/
modules/ big_pipe/ tests/ src/ Functional/ BigPipeTest.php  - Asserts expected BigPipe no-JS placeholders are present and replaced.
 - BigPipeTest::assertBigPipePlaceholders in core/
modules/ big_pipe/ tests/ src/ Functional/ BigPipeTest.php  - Asserts expected BigPipe placeholders are present and replaced.
 
File
- 
              core/
modules/ big_pipe/ tests/ src/ Functional/ BigPipeTest.php, line 467  
Class
- BigPipeTest
 - Tests BigPipe's no-JS detection & response delivery (with and without JS).
 
Namespace
Drupal\Tests\big_pipe\FunctionalCode
protected function assertSetsEqual(array $a, array $b) : void {
  $result = count($a) == count($b) && !array_diff_assoc($a, $b);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.