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