function XmlEncoderTest::testSupportsDecoding

Tests the supportsDecoding() method.

File

core/modules/serialization/tests/src/Unit/Encoder/XmlEncoderTest.php, line 56

Class

XmlEncoderTest
@coversDefaultClass \Drupal\serialization\Encoder\XmlEncoder[[api-linebreak]] @group serialization

Namespace

Drupal\Tests\serialization\Unit\Encoder

Code

public function testSupportsDecoding() {
  $this->assertTrue($this->encoder
    ->supportsDecoding('xml'));
  $this->assertFalse($this->encoder
    ->supportsDecoding('json'));
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.