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