mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-22 22:46:53 +00:00
17 lines
415 B
PHP
17 lines
415 B
PHP
<?php
|
|
class CpasbienBridgeTest extends BridgeTest {
|
|
public $bridgeName = 'CpasbienBridge';
|
|
|
|
function loadParameters(){
|
|
return array(
|
|
array('q' => 'france')
|
|
);
|
|
}
|
|
|
|
public function testSearchFrance() {
|
|
$this->defaultTest($this->bridgeDatas
|
|
, [BridgeTest::TEST_NAME, BridgeTest::TEST_TITLE, BridgeTest::TEST_CONTENT, BridgeTest::TEST_ID, BridgeTest::TEST_URI, BridgeTest::TEST_TIMESTAMP]
|
|
, 1);
|
|
}
|
|
}
|
|
?>
|