1
0
Fork 0
mirror of synced 2025-09-23 12:18:44 +00:00
ZoKrates/zokrates_core_test/tests/tests/ternary.json
2021-09-16 18:10:45 +02:00

36 lines
533 B
JSON

{
"entry_point": "./tests/tests/ternary.zok",
"max_constraint_count": 6,
"tests": [
{
"input": {
"values": ["1", "0"]
},
"output": {
"Ok": {
"values": ["1"]
}
}
},
{
"input": {
"values": ["0", "1"]
},
"output": {
"Ok": {
"values": ["2"]
}
}
},
{
"input": {
"values": ["0", "0"]
},
"output": {
"Ok": {
"values": ["3"]
}
}
}
]
}