diff options
Diffstat (limited to 'tests/BridgeImplementationTest.php')
-rw-r--r-- | tests/BridgeImplementationTest.php | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/BridgeImplementationTest.php b/tests/BridgeImplementationTest.php index d2f74931..dd68934e 100644 --- a/tests/BridgeImplementationTest.php +++ b/tests/BridgeImplementationTest.php @@ -160,29 +160,6 @@ class BridgeImplementationTest extends TestCase /** * @dataProvider dataBridgesProvider */ - public function testVisibleMethods($path) - { - $bridgeAbstractMethods = get_class_methods(BridgeAbstract::class); - sort($bridgeAbstractMethods); - $feedExpanderMethods = get_class_methods(FeedExpander::class); - sort($feedExpanderMethods); - - $this->setBridge($path); - - $publicMethods = get_class_methods($this->bridge); - sort($publicMethods); - foreach ($publicMethods as $publicMethod) { - if ($this->bridge instanceof FeedExpander) { - $this->assertContains($publicMethod, $feedExpanderMethods); - } else { - $this->assertContains($publicMethod, $bridgeAbstractMethods); - } - } - } - - /** - * @dataProvider dataBridgesProvider - */ public function testMethodValues($path) { $this->setBridge($path); |