/** * Tests whether `Breadcrumbs::removeAll()` works correctly. * * @dataProvider crumbsProvider */ public function testRemoveAll($crumbs) { $b = new Breadcrumbs($crumbs); $b->removeAll(); $this->assertTrue($b->isEmpty()); }
/** * Tests whether `Breadcrumbs::removeAll()` works correctly. * * @dataProvider crumbsProvider */ public function testRemoveAll($crumbs) { $b = new Breadcrumbs($crumbs); $b->removeAll(); Assert::true($b->isEmpty()); }