public function LanguageUnitTest::testConstruct in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/tests/Drupal/Tests/Core/Language/LanguageUnitTest.php \Drupal\Tests\Core\Language\LanguageUnitTest::testConstruct()
@covers ::__construct
File
- core/
tests/ Drupal/ Tests/ Core/ Language/ LanguageUnitTest.php, line 23 - Contains \Drupal\Tests\Core\Language\LanguageUnitTest.
Class
- LanguageUnitTest
- @coversDefaultClass \Drupal\Core\Language\Language @group Language
Namespace
Drupal\Tests\Core\LanguageCode
public function testConstruct() {
$name = $this
->randomMachineName();
$language_code = $this
->randomMachineName(2);
$uuid = $this
->randomMachineName();
$language = new Language(array(
'id' => $language_code,
'name' => $name,
'uuid' => $uuid,
));
// Test that nonexistent properties are not added to the language object.
$this
->assertTrue(property_exists($language, 'id'));
$this
->assertTrue(property_exists($language, 'name'));
$this
->assertFalse(property_exists($language, 'uuid'));
}