{{ begin("main") }} {{ import($data, "testcase.json") }} {{ ifeq($data.name, "Stuart") }}

Name is Stuart

{{ end(ifeq) }} {{ ifne($data.name, "Stuart") }}

Name is not Stuart

{{ end(ifne) }} {{ ifeq($data.name, "Humphrey") }}

Name is Humphrey

{{ end(ifeq) }} {{ ifne($data.name, "Humphrey") }}

Name is not Humphrey

{{ end(ifne) }} {{ ifge($data.age, 18) }}

Is an adult

{{ else() }}

Is not an adult

{{ end(ifge) }} {{ iflt($data.age, 18) }}

Is a child

{{ else() }}

Is not a child

{{ end(iflt) }} {{ end("main") }}