blob: 544856edc3411ebf567ce3d085d0f20fffe59970 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package dbus_test
import (
"os"
"testing"
"hakurei.app/container"
"hakurei.app/internal/helper"
)
func TestMain(m *testing.M) { container.TryArgv0(nil); helper.InternalHelperStub(); os.Exit(m.Run()) }
|