Alcaeus\MongoDbAdapter\Tests\Mongo\MongoCollectionTest::testSubCollectionWithNullBytes PHP Метод

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

    public function testSubCollectionWithNullBytes()
    {
        $collection = $this->getCollection();
        $this->assertInstanceOf('MongoCollection', $collection->{'foo' . chr(0)});
        $this->assertSame('test', $collection->getName());
    }
MongoCollectionTest