1// Copyright 2019 The Gitea Authors. All rights reserved.
2// SPDX-License-Identifier: MIT
3
4package gitdiff
5
6import (
7 "testing"
8
9 "forgejo.org/models/unittest"
10
11 _ "forgejo.org/models"
12 _ "forgejo.org/models/actions"
13 _ "forgejo.org/models/activities"
14 _ "forgejo.org/models/forgefed"
15)
16
17func TestMain(m *testing.M) {
18 unittest.MainTest(m)
19}