14 $title = Title::newMainPage();
15 $urls1[] = $title->getCanonicalURL(
'?x=1' );
16 $urls1[] = $title->getCanonicalURL(
'?x=2' );
17 $urls1[] = $title->getCanonicalURL(
'?x=3' );
19 DeferredUpdates::addUpdate( $update1 );
22 $urls2[] = $title->getCanonicalURL(
'?x=2' );
23 $urls2[] = $title->getCanonicalURL(
'?x=3' );
24 $urls2[] = $title->getCanonicalURL(
'?x=4' );
26 DeferredUpdates::addUpdate( $update2 );
28 $wrapper = TestingAccessWrapper::newFromObject( $update1 );
29 $this->assertEquals( array_merge( $urls1, $urls2 ), $wrapper->urls );