(t *testing.T)
| 131 | } |
| 132 | |
| 133 | func TestComplexityScore_TrivialTask(t *testing.T) { |
| 134 | if s := ComplexityScore("read main.go"); s > 3 { |
| 135 | t.Errorf("trivial task scored too high: %d", s) |
| 136 | } |
| 137 | } |
| 138 | |
| 139 | func TestComplexityScore_MultiActionMultiFileExceedsThreshold(t *testing.T) { |
| 140 | task := "update auth.go and add tests/auth_test.go then run go test" |
nothing calls this directly
no test coverage detected