Expand description
IPC coverage tracking — measures which Tauri commands are exercised by tests.
Compares the set of registered commands (from the registry) against the set of IPC calls observed during a test session. Reports tested vs. untested commands, call counts, and coverage percentage.
Structs§
- Command
Calls - A command name with its invocation count.
- Coverage
Report - IPC coverage report showing which commands were exercised.
Functions§
- assert_
coverage_ above - Asserts that IPC coverage meets the given threshold, panicking with a detailed report if it does not.
- coverage_
report - Builds a coverage report by comparing the command registry against IPC call logs.