Files
divkit/test_data/expression_test_data/operations_equality_datetime.json
man-y eed44f448f Mark flutter platform supported tests
commit_hash:a80884f8d89a14490cb02e5278507f93ef7fb589
2025-01-13 16:09:03 +03:00

57 lines
1022 B
JSON

{
"cases": [
{
"expression": "@{parseUnixTime(0) == parseUnixTime(0)}",
"expected": {
"type": "boolean",
"value": true
},
"platforms": [
"android",
"ios",
"web",
"flutter"
]
},
{
"expression": "@{parseUnixTime(0) != parseUnixTime(0)}",
"expected": {
"type": "boolean",
"value": false
},
"platforms": [
"android",
"ios",
"web",
"flutter"
]
},
{
"expression": "@{parseUnixTime(0) != parseUnixTime(1)}",
"expected": {
"type": "boolean",
"value": true
},
"platforms": [
"android",
"ios",
"web",
"flutter"
]
},
{
"expression": "@{parseUnixTime(0) == parseUnixTime(1)}",
"expected": {
"type": "boolean",
"value": false
},
"platforms": [
"android",
"ios",
"web",
"flutter"
]
}
]
}