blob: 5e93ace2e09c3b05f5e106133a5227cf8b04dcdf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package dbus_test
import (
"os"
"testing"
"hakurei.app/container"
"hakurei.app/helper"
"hakurei.app/internal"
"hakurei.app/internal/hlog"
)
func TestMain(m *testing.M) {
container.TryArgv0(hlog.Output{}, hlog.Prepare, internal.InstallOutput)
helper.InternalHelperStub()
os.Exit(m.Run())
}
|