set up function tests area
This commit is contained in:
parent
923bda444d
commit
a818df4f4d
|
@ -0,0 +1 @@
|
||||||
|
<?php
|
|
@ -0,0 +1,2 @@
|
||||||
|
<?php
|
||||||
|
|
|
@ -0,0 +1,21 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
require_once('PHPUnit/Framework.php');
|
||||||
|
require_once('MockPress/mockpress.php');
|
||||||
|
require_once(dirname(__FILE__) . '/../../functions/syndication.php');
|
||||||
|
|
||||||
|
class SyndicationTest extends PHPUnit_Framework_TestCase {
|
||||||
|
function providerTestTheTitleRSS() {
|
||||||
|
return array(
|
||||||
|
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* TODO Add get_comments_number to MockPress
|
||||||
|
* @dataProvider providerTestTheTitleRSS
|
||||||
|
*/
|
||||||
|
function testTheTitleRSS($number_of_comments, $expected_title) {
|
||||||
|
$this->markTestIncomplete();
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue