Example #1
0
 public function testGetConfigContent()
 {
     $config = new Config(self::TEST_ENTITY);
     $json = $config->getConfigContent();
     $arJson = json_decode($json, true);
     $this->assertNotEmpty($arJson['fields']['SORT']['required_error']['lang']);
     $this->assertEquals('%_SORT_IS_EMPTY', $arJson['fields']['SORT']['required_error']['lang']);
 }