cargo run --bin cairo-test -- /path/to/file.cairo
We can use this command to run Cairo level tests.
```
fn testasserttrue() { // Asserts that true assert(true, 'assert(true)'); }
fn testassertfalse() { assert(false, 'assert(false)'); } ```
Longer example can be found at Core Library Test.
cargo run --bin cairo-test -- corelib/
You can run only tests containing a given string using -f <filter_string>
.
For example:
cargo run --bin cairo-test -- /path/to/file.cairo -f specific_test