We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d2c236 commit c6c5c52Copy full SHA for c6c5c52
1 file changed
cmd/next-test/main.go
@@ -116,5 +116,12 @@ func main() {
116
}
117
118
119
+ // Calculate total pending statements across all tests
120
+ totalStatements := 0
121
+ for _, t := range todoTests {
122
+ totalStatements += t.explainTodoLen
123
+ }
124
+
125
fmt.Printf("\nRemaining explain_todo tests: %d\n", len(todoTests))
126
+ fmt.Printf("Total pending statements: %d\n", totalStatements)
127
0 commit comments