2020-04-05 00:20:50 -06: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 02:48:22 -06:00
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2017-06-04 12:28:17 -06:00
|
|
|
"github.com/stretchr/testify/assert"
|
2017-05-20 02:48:22 -06:00
|
|
|
)
|
|
|
|
|
2017-06-04 12:28:17 -06:00
|
|
|
// TestFixturesAreConsistent assert that test fixtures are consistent
|
|
|
|
func TestFixturesAreConsistent(t *testing.T) {
|
|
|
|
assert.NoError(t, PrepareTestDatabase())
|
|
|
|
CheckConsistencyForAll(t)
|
|
|
|
}
|
|
|
|
|
2017-05-20 02:48:22 -06:00
|
|
|
func TestMain(m *testing.M) {
|
2017-11-30 08:52:15 -07:00
|
|
|
MainTest(m, "..")
|
2017-05-20 02:48:22 -06:00
|
|
|
}
|