mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-04-28 11:30:15 +00:00
Adds detailed architecture documentation for Pulse Patrol and Pulse Assistant. Updates AI.md and PULSE_PRO.md. Also includes additional tests.
12 lines
271 B
Go
12 lines
271 B
Go
package ai
|
|
|
|
import "testing"
|
|
|
|
func TestPatrolMetrics_Recorders(t *testing.T) {
|
|
m := GetPatrolMetrics()
|
|
m.RecordCircuitBlock()
|
|
m.RecordInvestigationOutcome("resolved")
|
|
m.RecordFixVerification("success")
|
|
m.RecordScopedDroppedFinal()
|
|
m.RecordRun("manual", "scoped")
|
|
}
|