Sokil\Mongo\StructureTest::testMergeModified_WithDots_ExistedKey PHP Method

testMergeModified_WithDots_ExistedKey() public method

    public function testMergeModified_WithDots_ExistedKey()
    {
        $structure = new Structure();
        $structure->merge(array('param' => array('sub1' => 'value1')));
        $structure->merge(array('param' => array('sub2' => 'value2')));
        $this->assertEquals(array('param' => array('sub1' => 'value1', 'sub2' => 'value2')), $structure->toArray());
        $this->assertTrue($structure->isModified('param'));
    }