Files
LinkTitles/tests/phpunit/DelimitersTest.php
2017-08-27 22:25:22 +02:00

22 lines
367 B
PHP

<?php
/**
* @group bovender
*/
class DelimitersTest extends MediaWikiTestCase {
/**
* @dataProvider provideSplitData
*/
public function testSplit( $input, $output ) {
}
public static function provideSplitData() {
return [
[
'this may be linked [[this may not be linked]]',
[ 'this may be linked', '[[this may not be linked]]']
]
];
}
}