Run status mapping field is for mapping the test result's status values to ALM run status value. Yaml key represents the ALM run status values. Only one of the following status can be set here:
Passed
Failed
Yaml value represents the condition that sustains the status. Ten kinds of conditions can be set here:
==StringValue
!=StringValue
==0 (Or any numeric value)
!=0 (Or any numeric value)
>>0 (Or any numeric value)
<<0 (Or any numeric value)
<=0 (Or any numeric value)
>=0 (Or any numeric value)
==NULL
!=NULL
You should first set the status field in field mapping.

Take following test result as example: <test-case name="ExampleTestOfNUnit.TestMultiplicationFail" executed="True" result="Failure" success="False" time="0.122" asserts="1"> Sample field mapping: run: status: "x: success" Sample status mapping: status: Passed: "==true" Take following test result as example: <case> <duration>0.041</duration> <className>SomeClass</className> <testName>SomeTest-1</testName> <skipped>false</skipped> <failedSince>0</failedSince> </case> Sample field mapping: run: status: "x: failedSince" Sample status mapping: status: Failed: ">=0"