aboutsummaryrefslogtreecommitdiffhomepage
path: root/system/dbus/proc_test.go
blob: 8b41c04c9da735e4f67b3b7b7929378db865b963 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package dbus_test

import (
	"os"
	"testing"

	"hakurei.app/container"
	"hakurei.app/helper"
)

func TestMain(m *testing.M) {
	container.TryArgv0(nil)
	helper.InternalHelperStub()
	os.Exit(m.Run())
}