public function testEncodeRFC3986_チルダが含まれる場合_エンコードされない()
 {
     $input = 'http://www.example.co.jp/~';
     $this->expected = 'http%3A%2F%2Fwww.example.co.jp%2F~';
     $this->actual = SC_Utils::encodeRFC3986($input);
     $this->verify();
 }