ardour
convert_test.cc
Go to the documentation of this file.
1 #include "convert_test.h"
2 #include "pbd/convert.h"
3 
5 
6 using namespace std;
7 
8 void
10 {
11  string const url = "http://foo.bar.baz/A%20B%20C%20+42.html";
12  CPPUNIT_ASSERT_EQUAL (PBD::url_decode (url), string ("http://foo.bar.baz/A B C 42.html"));
13 }
Definition: Beats.hpp:239
string url_decode(string const &url)
Definition: convert.cc:205
void testUrlDecode()
Definition: convert_test.cc:9
CPPUNIT_TEST_SUITE_REGISTRATION(ConvertTest)