public function testSerializeScalar() { $this->serializer = new Serializer(array(), array( 'json' => new JsonEncoder(), )); $result = $this->serializer ->serialize('foo', 'json'); $this ->assertEquals('"foo"', $result); }