Bolt\Tests\Logger\ChangeLogTest::testGetChangeLog PHP Method

testGetChangeLog() public method

public testGetChangeLog ( )
    public function testGetChangeLog()
    {
        $logs = $this->getLogChangeRepository()->getChangeLog(['limit' => 1, 'offset' => 0, 'order' => 'id']);
        $logs2 = $this->getLogChangeRepository()->getChangeLog(['limit' => 1]);
        $this->assertEquals(1, count($logs));
        $this->assertEquals(1, count($logs2));
    }