/** * @dataProvider casesForTakeRight */ public function testChainedTakeRight($collection, $count, $fromEnd, $expected) { $container = new Container($collection); $actual = $container->takeRight($count, $fromEnd)->value(); $this->assertEquals($expected, $actual); }