summaryrefslogtreecommitdiffstats
path: root/dependencies/pkg/mod/github.com/lib/pq@v1.10.7/buf_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'dependencies/pkg/mod/github.com/lib/pq@v1.10.7/buf_test.go')
-rw-r--r--dependencies/pkg/mod/github.com/lib/pq@v1.10.7/buf_test.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/dependencies/pkg/mod/github.com/lib/pq@v1.10.7/buf_test.go b/dependencies/pkg/mod/github.com/lib/pq@v1.10.7/buf_test.go
new file mode 100644
index 0000000..df88d38
--- /dev/null
+++ b/dependencies/pkg/mod/github.com/lib/pq@v1.10.7/buf_test.go
@@ -0,0 +1,16 @@
+package pq
+
+import "testing"
+
+func Benchmark_writeBuf_string(b *testing.B) {
+ var buf writeBuf
+ const s = "foo"
+
+ b.ReportAllocs()
+ b.ResetTimer()
+
+ for i := 0; i < b.N; i++ {
+ buf.string(s)
+ buf.buf = buf.buf[:0]
+ }
+}