Awesome Reviewers

When tests target a particular guard, ordering, or threshold, ensure the test inputs actually exercise that exact logic (and not an earlier rejection/acceptance). Also pin threshold behavior with both sides.

How to apply:

Example pattern (boundary + “caused-by” focus):

// Over-bound case: should fail only because it exceeds the bound
assert!(is_heading_fragment("IIIIIIIII. the value implies"));

// Within-bound case: should stay exempt when under/at the bound
assert!(!is_heading_fragment("IIIIIIII. What this implies"));

In practice: when a test feels “too easy” (or was introduced to protect a specific regression), double-check that the inputs reach the intended branch/guard and that each assertion would fail for the stated reason.