mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-23 06:56:53 +00:00
20 lines
364 B
PHP
20 lines
364 B
PHP
<?php
|
|
class ABCTabsBridgeTest extends BridgeTest {
|
|
|
|
public $bridgeName = 'ABCTabsBridge';
|
|
|
|
public function testBridge() {
|
|
|
|
$this->defaultTest($this->bridgeDatas,
|
|
[
|
|
BridgeTest::TEST_NAME,
|
|
BridgeTest::TEST_ID,
|
|
BridgeTest::TEST_TITLE,
|
|
BridgeTest::TEST_CONTENT,
|
|
BridgeTest::TEST_URI
|
|
], 5);
|
|
|
|
}
|
|
|
|
}
|