2020-04-05 06:20:50 +00:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2017-05-20 08:48:22 +00:00
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2017-06-04 18:28:17 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
2017-05-20 08:48:22 +00:00
|
|
|
)
|
|
|
|
|
2017-06-04 18:28:17 +00:00
|
|
|
// TestFixturesAreConsistent assert that test fixtures are consistent
|
|
|
|
func TestFixturesAreConsistent(t *testing.T) {
|
|
|
|
assert.NoError(t, PrepareTestDatabase())
|
|
|
|
CheckConsistencyForAll(t)
|
|
|
|
}
|
|
|
|
|
2017-05-20 08:48:22 +00:00
|
|
|
func TestMain(m *testing.M) {
|
2017-11-30 15:52:15 +00:00
|
|
|
MainTest(m, "..")
|
2017-05-20 08:48:22 +00:00
|
|
|
}
|