Files
Atay-Makhzan/models/main_test.go
T

33 lines
712 B
Go
Raw Normal View History

2020-04-05 01:20:50 -05: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"
"code.gitea.io/gitea/models/unittest"
user_model "code.gitea.io/gitea/models/user"
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, unittest.PrepareTestDatabase())
unittest.CheckConsistencyFor(t,
&user_model.User{},
&Repository{},
&Issue{},
&PullRequest{},
&Milestone{},
&Label{},
&Team{},
&Action{})
2017-06-04 14:28:17 -04:00
}
2017-05-20 04:48:22 -04:00
func TestMain(m *testing.M) {
unittest.MainTest(m, "..")
2017-05-20 04:48:22 -04:00
}