summaryrefslogtreecommitdiff
path: root/tests/utils/test5.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/utils/test5.cpp')
-rwxr-xr-xtests/utils/test5.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/utils/test5.cpp b/tests/utils/test5.cpp
new file mode 100755
index 0000000..507d3c3
--- /dev/null
+++ b/tests/utils/test5.cpp
@@ -0,0 +1,16 @@
+#include "StringUtils.hpp"
+
+#include <iostream>
+
+using namespace std;
+
+int main( void )
+{
+ if( stringicasecmp( "test", "TEST" ) ) {
+ cout << "test == TEST" << endl;
+ } else {
+ cout << "test <> TEST" << endl;
+ }
+
+ return 0;
+}