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