save(); $edit = [ 'label' => $this->randomMachineName(), 'tag' => $this->randomMachineName(), 'description' => $this->randomMachineName(30), 'langcode' => 'fr', ]; $this->drupalPostForm("admin/structure/views/nojs/edit-details/$view_name/default", $edit, t('Apply')); $this->drupalPostForm(NULL, [], t('Save')); $view = Views::getView($view_name); foreach (['label', 'tag', 'description', 'langcode'] as $property) { $this->assertEqual($view->storage->get($property), $edit[$property], format_string('Make sure the property @property got probably saved.', ['@property' => $property])); } } }