blob: ded3d76c83485c841b111986644c9358da9342a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Copyright 2024 The Forgejo Authors.
// SPDX-License-Identifier: GPL-3.0-or-later
package container
import (
"testing"
"code.gitea.io/gitea/models/unittest"
)
func TestMain(m *testing.M) {
unittest.MainTest(m)
}
|