Skip to content
Snippets Groups Projects
Commit 1bba30a7 authored by Angie Byron's avatar Angie Byron
Browse files

Issue #2083985 by damiankloip: Unit test Drupal\serialization\Encoder\JsonEncoder class.

parent eb22bab7
No related branches found
No related tags found
No related merge requests found
<?php
/**
* @file
* Contains \Drupal\serialization\Tests\Encoder\JsonEncoderTest.
*/
namespace Drupal\serialization\Tests\Encoder;
use Drupal\serialization\Encoder\JsonEncoder;
use Drupal\Tests\UnitTestCase;
/**
* Tests the JsonEncoder class.
*
* @see \Drupal\serialization\Encoder\JsonEncoder
*/
class JsonEncoderTest extends UnitTestCase {
public static function getInfo() {
return array(
'name' => 'JsonEncoderTest',
'description' => 'Tests the JsonEncoder class.',
'group' => 'Serialization',
);
}
/**
* Tests the supportsEncoding() method.
*/
public function testSupportsEncoding() {
$encoder = new JsonEncoder();
$this->assertTrue($encoder->supportsEncoding('json'));
$this->assertTrue($encoder->supportsEncoding('ajax'));
$this->assertFalse($encoder->supportsEncoding('xml'));
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment