14 lines
147 B
Go
14 lines
147 B
Go
|
package consul
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestMain(m *testing.M) {
|
||
|
// Register the test RPC endpoint
|
||
|
TestEndpoint()
|
||
|
|
||
|
os.Exit(m.Run())
|
||
|
}
|