Exemplo n.º 1
0
func TestPostgreSQL(t *testing.T) {
	tm, theDB := InitPostgreSQL()
	common.RunAll(tm, t)
	theDB.Close()
}
Exemplo n.º 2
0
func TestMySQL5(t *testing.T) {
	tm, theDB := InitMySQL5()
	common.RunAll(tm, t)
	theDB.Close()
}
Exemplo n.º 3
0
func TestOracle(t *testing.T) {
	tm, theDB := InitOracle()
	common.RunAll(tm, t)
	theDB.Close()
}
Exemplo n.º 4
0
func TestFirebirdSQL(t *testing.T) {
	tm, theDB := InitFirebirdSQL()
	common.RunAll(tm, t)
	theDB.Close()
}