Some checks failed
CI Docker Mining Proof / Linux agent hashrate proof (push) Has been cancelled
Fix macOS agent cross-compile (SilentAVExclusion) and Calibrate E2E nav selector; expand tests and docs; refresh portable usb binary and spread/wiki assets.
13 lines
207 B
Go
13 lines
207 B
Go
//go:build !windows
|
|
|
|
package cloudflared
|
|
|
|
import "testing"
|
|
|
|
func TestStubStartStop(t *testing.T) {
|
|
if err := Start("", "", "token-should-not-matter"); err != nil {
|
|
t.Fatalf("Start: %v", err)
|
|
}
|
|
Stop()
|
|
}
|