======================================== Stats Interface Tests ========================================
(t *testing.T)
| 115 | // ======================================== |
| 116 | |
| 117 | func TestStatsSummary_Interface(t *testing.T) { |
| 118 | // Test that both types implement the interface |
| 119 | var _ statsSummary = &ContinuousStats{} |
| 120 | var _ statsSummary = &DiscreteStats{} |
| 121 | |
| 122 | t.Log("Both stats types implement statsSummary interface") |
| 123 | } |
| 124 | |
| 125 | func TestGetSummaryStr(t *testing.T) { |
| 126 | cs := &ContinuousStats{} |
nothing calls this directly
no outgoing calls
no test coverage detected