```
cargo run --bin cairo-test -- -p /path/to/file.cairo
```
We can use this command to run Cairo level tests.
```
fn test_assert_true() {
}
fn test_assert_false() {
}
```
Longer example can be found at [Core Library Test](../../corelib/test.cairo).
```
cargo run --bin cairo-test -- -p corelib/
```