```
cargo run --bin cairo-test -- /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/src/test.cairo).
```
cargo run --bin cairo-test -- corelib/
```