2018-05-17 13:05:00 +09:00
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2022-11-28 03:20:29 +09:00
|
|
|
// SPDX-License-Identifier: MIT
|
2018-05-17 13:05:00 +09:00
|
|
|
|
2021-06-09 08:33:54 +09:00
|
|
|
package admin
|
2018-05-17 13:05:00 +09:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2021-11-12 23:36:47 +09:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2018-05-17 13:05:00 +09:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2023-09-28 10:38:53 +09:00
|
|
|
unittest.MainTest(m)
|
2018-05-17 13:05:00 +09:00
|
|
|
}
|