Start factoring test helpers out

pgx-vs-pq
Jack Christensen 2013-07-13 17:29:24 -04:00
parent 26105f4409
commit 8afcde41f2
2 changed files with 11 additions and 6 deletions

View File

@ -15,12 +15,6 @@ var float4TextVsBinaryTestDataLoaded bool
var float8TextVsBinaryTestDataLoaded bool
var boolTextVsBinaryTestDataLoaded bool
func mustPrepare(b *testing.B, conn *Connection, name, sql string) {
if err := conn.Prepare(name, sql); err != nil {
b.Fatalf("Could not prepare %v: %v", name, err)
}
}
func createNarrowTestData(b *testing.B, conn *Connection) {
if narrowTestDataLoaded {
return

11
helper_test.go Normal file
View File

@ -0,0 +1,11 @@
package pgx
type test interface {
Fatalf(format string, args ...interface{})
}
func mustPrepare(t test, conn *Connection, name, sql string) {
if err := conn.Prepare(name, sql); err != nil {
t.Fatalf("Could not prepare %v: %v", name, err)
}
}