Пример #1
0
 public function testEncodeDecode()
 {
     $field = new JsonField();
     $field->setValue(['1' => 1]);
     $this->assertTrue(is_array($field->getValue()));
     $this->assertEquals(['1' => 1], $field->getValue());
     $this->assertEquals(1, $field->getValue()['1']);
 }