comicpress-2.8/test/functions/SyndicationTest.php

22 lines
481 B
PHP
Raw Normal View History

2009-12-18 12:42:18 +00:00
<?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();
}
}