start.p
| 1 |
for each test: |
|---|---|
| 2 |
message test.f1. |
| 3 |
end. |
| 4 |
|
| 5 |
for each test where test.c1 contains "a*": |
| 6 |
message test.f1. |
| 7 |
end. |
| 8 |
|
| 9 |
for each test where test.c1 contains "a*" by test.f1: |
| 10 |
message test.f1. |
| 11 |
end. |
| 12 |
|
| 13 |
for each test where test.f2 = 1 and test.f3 >= 1 and test.c1 contains "a*": |
| 14 |
message test.f1. |
| 15 |
end. |
| 16 |
|
| 17 |
for each test where test.f2 = 1 and test.f3 >= 1 OR test.c1 contains "a*": |
| 18 |
message test.f1. |
| 19 |
end. |
| 20 |
|
| 21 |
for each test where test.c1 contains "co*": |
| 22 |
message test.c1. |
| 23 |
end. |
| 24 |
|
| 25 |
for each test where test.c1 contains "m*": |
| 26 |
message test.c1. |
| 27 |
end. |