You are here

public function YamlSymfonyTest::testGetFileExtension in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Component/Serialization/YamlSymfonyTest.php \Drupal\Tests\Component\Serialization\YamlSymfonyTest::testGetFileExtension()
  2. 10 core/tests/Drupal/Tests/Component/Serialization/YamlSymfonyTest.php \Drupal\Tests\Component\Serialization\YamlSymfonyTest::testGetFileExtension()

@covers ::getFileExtension

File

core/tests/Drupal/Tests/Component/Serialization/YamlSymfonyTest.php, line 52

Class

YamlSymfonyTest
Tests the YamlSymfony serialization implementation.

Namespace

Drupal\Tests\Component\Serialization

Code

public function testGetFileExtension() {
  $this
    ->assertEquals('yml', YamlSymfony::getFileExtension());
}