BrowscapTest\Writer\Factory\FullPhpWriterFactoryTest::testCreateCollection PHP Метод

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

tests creating a writer collection
    public function testCreateCollection()
    {
        $logger = $this->createMock(\Monolog\Logger::class);
        $dir = vfsStream::url(self::STORAGE_DIR);
        self::assertInstanceOf(\Browscap\Writer\WriterCollection::class, $this->object->createCollection($logger, $dir));
    }
FullPhpWriterFactoryTest