]> git.saurik.com Git - apt.git/blobdiff - test/libapt/strutil_test.cc
vendor/steamos/*:
[apt.git] / test / libapt / strutil_test.cc
index 110a20d277dd49ecb7f747e704fa9433c2621e4b..8215654d0dbc09d2056fb6899df8db91f5f81127 100644 (file)
@@ -69,5 +69,23 @@ int main(int argc,char *argv[])
    result = StringSplit(input, "");
    equals(result.size(), 0);
 
    result = StringSplit(input, "");
    equals(result.size(), 0);
 
+   // endswith
+   bool b;
+   input = "abcd";
+   b = APT::String::Endswith(input, "d");
+   equals(b, true);
+
+   b = APT::String::Endswith(input, "cd");
+   equals(b, true);
+
+   b = APT::String::Endswith(input, "abcd");
+   equals(b, true);
+
+   b = APT::String::Endswith(input, "x");
+   equals(b, false);
+
+   b = APT::String::Endswith(input, "abcndefg");
+   equals(b, false);
+
    return 0;
 }
    return 0;
 }