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