public function testJsonDecode__JSON形式にエンコードされた文字列からarrayに変換される()
 {
     $input = '{"a":1,"b":2,"c":3,"d":4,"e":5}';
     $obj = new stdClass();
     $obj->a = 1;
     $obj->b = 2;
     $obj->c = 3;
     $obj->d = 4;
     $obj->e = 5;
     $this->expected = $obj;
     $this->actual = SC_Utils::jsonDecode($input);
     $this->verify();
 }