fsmon 0.4.5

Lightweight High-Performance File System Change Tracking Tool
Documentation
# fsmon Test Suite

## Test Files

- `p1_cli.rs` — CLI end-to-end tests (add, monitored, remove, query, changes, clean)
- `p1_monitor.rs` — Event parsing, serialization, and EventType completeness
- `p1_crash_recovery.rs` — Crash recovery and fault tolerance tests
- `p1_utils.rs` — Utility function tests (parse_size, parse_size_filter, parse_time_filter)

## Running Tests

```bash
# All tests
cargo test

# Integration tests only
cargo test --test '*'

# A single test
cargo test --test p1_cli add_global_with_path
```

## Test Layers

| Layer | Content | Location |
|-------|---------|----------|
| Unit tests | Module internals (monitor, events, filtering, fid_parser) | `src/**/*.rs` (`#[cfg(test)]`) |
| CLI parse tests | AddArgs, QueryArgs, etc. | `src/bin/fsmon.rs` (`#[cfg(test)]`) |
| Integration tests | End-to-end CLI, crash recovery, utilities | `tests/*.rs` |