public function ConfigTest::testIsNew in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/tests/Drupal/Tests/Core/Config/ConfigTest.php \Drupal\Tests\Core\Config\ConfigTest::testIsNew()
@covers ::isNew
File
- core/
tests/ Drupal/ Tests/ Core/ Config/ ConfigTest.php, line 110 - Contains \Drupal\Tests\Core\Config\ConfigTest.
Class
- ConfigTest
- Tests the Config.
Namespace
Drupal\Tests\Core\ConfigCode
public function testIsNew() {
// Config should be new by default.
$this
->assertTrue($this->config
->isNew());
// Config is no longer new once saved.
$this->config
->save();
$this
->assertFalse($this->config
->isNew());
}