xorm/integrations/main_test.go
Lunny Xiao 79bdda3cf1
All checks were successful
continuous-integration/drone/push Build is passing
Move all integrations tests to a standalone sub package (#1635)
Fix vet

Remove unused files

Move all integrations tests to a standalone sub package

Reviewed-on: #1635
2020-03-27 07:13:04 +00:00

14 lines
252 B
Go

// Copyright 2017 The Xorm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package integrations
import (
"testing"
)
func TestMain(m *testing.M) {
MainTest(m)
}