• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

stephenafamo / bob / 19668632728

25 Nov 2025 11:54AM UTC coverage: 42.301%. Remained the same
19668632728

push

github

web-flow
Merge pull request #589 from stephenafamo/string-writer

Use io.StringWriter instead of io.Writer for efficiency

196 of 295 new or added lines in 67 files covered. (66.44%)

9 existing lines in 5 files now uncovered.

9750 of 23049 relevant lines covered (42.3%)

569.79 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

69.23
/dialect/sqlite/dialect/dialect.go
1
package dialect
2

3
import (
4
        "io"
5
        "strconv"
6
)
7

8
//nolint:gochecknoglobals
9
var Dialect dialect
10

11
type dialect struct{}
12

13
func (d dialect) WriteArg(w io.StringWriter, position int) {
100✔
14
        w.WriteString("?")
100✔
15
        w.WriteString(strconv.Itoa(position))
100✔
16
}
100✔
17

NEW
18
func (d dialect) WriteNamedArg(w io.StringWriter, name string) {
×
NEW
19
        w.WriteString(":")
×
NEW
20
        w.WriteString(name)
×
UNCOV
21
}
×
22

23
func (d dialect) WriteQuoted(w io.StringWriter, s string) {
84✔
24
        w.WriteString(`"`)
84✔
25
        w.WriteString(s)
84✔
26
        w.WriteString(`"`)
84✔
27
}
84✔
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc