2021-01-29 07:58:33 +09:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-28 03:20:29 +09:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-01-29 07:58:33 +09:00
|
|
|
|
2022-11-02 17:54:36 +09:00
|
|
|
package base
|
2021-01-29 07:58:33 +09:00
|
|
|
|
2022-11-02 17:54:36 +09:00
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
)
|
2021-01-29 07:58:33 +09:00
|
|
|
|
2022-11-02 17:54:36 +09:00
|
|
|
func TestMain(m *testing.M) {
|
|
|
|
MainTest(m)
|
2021-01-29 07:58:33 +09:00
|
|
|
}
|