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