mirror of
https://gitea.com/jolheiser/sip
synced 2024-11-26 07:33:48 +01:00
11 lines
92 B
Go
11 lines
92 B
Go
|
package sdk
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestMain(m *testing.M) {
|
||
|
os.Exit(m.Run())
|
||
|
}
|