code.gitea.io/gitea@v1.22.3/models/project/main_test.go (about) 1 // Copyright 2020 The Gitea Authors. All rights reserved. 2 // SPDX-License-Identifier: MIT 3 4 package project 5 6 import ( 7 "testing" 8 9 "code.gitea.io/gitea/models/unittest" 10 11 _ "code.gitea.io/gitea/models/repo" 12 ) 13 14 func TestMain(m *testing.M) { 15 unittest.MainTest(m, &unittest.TestOptions{ 16 FixtureFiles: []string{ 17 "project.yml", 18 "project_board.yml", 19 "project_issue.yml", 20 "repository.yml", 21 }, 22 }) 23 }