/** * @testdox ``isLost()`` * @cover ::isLost * @dataProvider dataProviderAnalizer * @test */ public function isLost(History $history, $expected) { $this->assertSame($expected['lost'], $history->factoryAnalizer()->isLost()); }
/** * @testdox ``getSchema()`` * @cover ::getSchema * @dataProvider dataProviderHistory * @test */ public function getSchema(History $history) { $this->assertInternalType('array', $history->getSchema()); }