Plum\Plum\Converter\LogConverterTest::convertWithOptions PHP Метод

convertWithOptions() публичный Метод

public convertWithOptions ( )
    public function convertWithOptions()
    {
        $converter = new LogConverter($this->logger, 'notice', 'Log Me');
        $item = ['a' => 'foo', 'b' => 'bar'];
        $this->logger->shouldReceive('log')->with('notice', 'Log Me', $item);
        $converter->convert($item);
    }