Page History
...
Code Block | ||
---|---|---|
| ||
{
"testExecutionKey" : "DEMO-1206",
"tests" : [
{
"testKey" : "DEMO-7",
"start" : "2013-05-03T11:47:35+01:00",
"finish" : "2013-05-03T11:50:56+01:00",
"comment" : "Test was OK but the performance is very poor",
"status" : "PASS"
},
{
"testKey" : "DEMO-8",
"start" : "2013-05-03T12:14:12+01:00",
"finish" : "2013-05-03T12:15:23+01:00",
"comment" : "Performance was better this time, in the context of test set DEMO-10.",
"status" : "PASS"
},
{
"testKey" : "DEMO-9",
"start" : "2013-05-03T12:19:23+01:00",
"finish" : "2013-05-03T12:20:01+01:00",
"comment" : "Error decreasing space shuttle speed.",
"status" : "FAIL",
"examples" : [
"PASS",
"PASS",
"PASS",
"PASS",
"PASS",
"FAIL"
]
}
]
} |
...
Code Block | ||
---|---|---|
| ||
{
"testExecutionKey" : "DEMO-1206",
"tests" : [
{
"testKey" : "ABC-129",
"start" : "2014-08-30T11:47:35+01:00",
"finish" : "2014-08-30T11:50:56+01:00",
"comment" : "Successful execution",
"status" : "PASS"
}
]
} |
...
Code Block | ||
---|---|---|
| ||
{
"testExecutionKey" : "DEMO-1206",
"tests" : [
{
"testKey" : "DEMO-57",
"start" : "2014-08-30T12:19:23+01:00",
"finish" : "2014-08-30T12:20:01+01:00",
"comment" : "Error executing step 2!",
"status" : "FAIL",
"steps": [
{
"status": "PASS",
"actualResult": "Step 1: OK"
},
{
"status": "FAIL",
"actualResult": "Step 2 *Failed* with an unexpected error message",
"evidences" : [
{
"data": "(... base 64 encoded ...)",
"filename": "screenshot1.jpg",
"contentType": "image/jpeg"
}
]
}
]
}
]
} |
...
Code Block | ||
---|---|---|
| ||
{
"testExecutionKey" : "DEMO-1206",
"tests": [
{
"start" : "2021-08-30T11:47:35+01:00",
"finish" : "2021-08-30T11:50:56+01:00",
"comment" : "Successful execution",
"status" : "PASS",
"evidence" : [
{
"data": "iVBORw0KGgoAAAANSUhEUgAABkIAAAO9CAYAAADezXv6AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAEn(...base64 file enconding)",
"filename": "image21.jpg",
"contentType": "image/jpeg"
}
],
"testInfo": {
"summary": "Strong password validation",
"testType": "Manual",
"projectKey": "STORE",
"steps": [
{
"action": "Open the Change Password screen by selecting option \"My Profile > Password\"",
"data": "",
"result": ""
},
{
"action": "Fill the password fields with data",
"data": "Current Password: ${Password}\nNew Password: ${Password}\nConfirm New Password: ${Password}",
"result": "The new password is: ${Valid}\nError:\n${Message}"
}
]
},
"iterations": [
{
"parameters": [
{
"name": "Password",
"value": "2635ftvu23v7t!09"
},
{
"name": "Valid",
"value": "Valid"
},
{
"name": "Message",
"value": ""
}
],
"status": "PASS",
"steps": [
{
"actualResult": "",
"status": "PASS"
},
{
"actualResult": "Password changed successfully",
"status": "PASS"
}
]
},
{
"parameters": [
{
"name": "Password",
"value": "123123"
},
{
"name": "Valid",
"value": "Not Valid"
},
{
"name": "Message",
"value": "Password is too simple."
}
],
"status": "FAIL",
"steps": [
{
"actualResult": "",
"status": "PASS"
},
{
"actualResult": "Password too simple!",
"status": "FAIL"
}
]
}
]
}
]
} |
...