setupEnv( $config, $data ); MockCommentFormatter::$data = $data; $commentFormatter = TestingAccessWrapper::newFromClass( MockCommentFormatter::class ); $actual = $commentFormatter->addReplyLinksInternal( $dom, RequestContext::getMain()->getLanguage() ); // Optionally write updated content to the "reply HTML" files if ( getenv( 'DISCUSSIONTOOLS_OVERWRITE_TESTS' ) ) { self::overwriteTextFile( $expectedPath, $actual ); } self::assertEquals( $expected, $actual, $name ); } public function provideAddReplyLinksInternal() : array { return self::getJson( '../cases/formattedreply.json' ); } }