blob: 8b9d3be23011f4ce9697360da56192362517bff8 [file] [log] [blame]
khfaraaz82@gmail.comc526fe92012-08-10 22:09:13 +00001/*
2 * Testcase Name : matches11.aql
3 * Description : Positive tests
4 * Success : Yes
5 * Date : 20th April 2012
6 */
7
8write output to nc1:"rttest/string_matches11.adm";
9
10for $a in [matches("hello",null),
11matches("hello","helllo"),
12matches("hello"," "),
13matches(null,"hello"),
jarodwen20e5a582013-03-18 04:33:00 +000014matches(null, ""),
15matches(null, null),
khfaraaz82@gmail.comc526fe92012-08-10 22:09:13 +000016matches("hello","[^a-z]")]
17return $a
18