aboutsummaryrefslogtreecommitdiffstats
path: root/CommonLibs/URLEncodeTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CommonLibs/URLEncodeTest.cpp')
-rw-r--r--CommonLibs/URLEncodeTest.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/CommonLibs/URLEncodeTest.cpp b/CommonLibs/URLEncodeTest.cpp
deleted file mode 100644
index dbc4630..0000000
--- a/CommonLibs/URLEncodeTest.cpp
+++ /dev/null
@@ -1,17 +0,0 @@
-
-#include "URLEncode.h"
-#include <string>
-#include <iostream>
-
-
-using namespace std;
-
-
-int main(int argc, char *argv[])
-{
-
- string test = string("Testing: !@#$%^&*() " __DATE__ " " __TIME__);
- cout << test << endl;
- cout << URLEncode(test) << endl;
-}
-