diff --git a/benchmarking-suite/frameworks/noir/circuits/test/Nargo.toml b/benchmarking-suite/frameworks/noir/circuits/test/Nargo.toml new file mode 100644 index 00000000..0e6c7b44 --- /dev/null +++ b/benchmarking-suite/frameworks/noir/circuits/test/Nargo.toml @@ -0,0 +1,6 @@ +[package] +name = "test" +type = "bin" +authors = [""] + +[dependencies] \ No newline at end of file diff --git a/benchmarking-suite/frameworks/noir/circuits/test/src/main.nr b/benchmarking-suite/frameworks/noir/circuits/test/src/main.nr new file mode 100644 index 00000000..3c30bf08 --- /dev/null +++ b/benchmarking-suite/frameworks/noir/circuits/test/src/main.nr @@ -0,0 +1,11 @@ +fn main(x: Field, y: pub Field) { + assert(x != y); +} + +#[test] +fn test_main() { + main(1, 2); + + // Uncomment to make test fail + // main(1, 1); +}