mql_test.go 215 B

123456789101112131415
  1. package mql_test
  2. import (
  3. "os"
  4. "testing"
  5. "git.wecise.com/wecise/odbtools/odbctest/odbc/mql"
  6. )
  7. func TestMQL(t *testing.T) {
  8. if os.Getenv("ODBUNSURE") == "" {
  9. os.Setenv("ODBUNSURE", "retry")
  10. }
  11. mql.Run(t)
  12. }