diff options
Diffstat (limited to 'system/dbus/proc_test.go')
| -rw-r--r-- | system/dbus/proc_test.go | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/system/dbus/proc_test.go b/system/dbus/proc_test.go new file mode 100644 index 00000000..5e93ace2 --- /dev/null +++ b/system/dbus/proc_test.go @@ -0,0 +1,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()) +} |
