mirror of
https://github.com/lightninglabs/faraday.git
synced 2026-08-13 12:33:35 +02:00
This commit adds an itest setup which can be used to test faraday's rpc. The setup is largely copied from our existing loop server itests.
9 lines
241 B
Go
9 lines
241 B
Go
package itest
|
|
|
|
import "testing"
|
|
|
|
// TestFail only serves to detect bugs that prevent itest errors from surfacing.
|
|
// It always fails and is caught at a higher level in run_itest.sh.
|
|
func TestFail(t *testing.T) {
|
|
t.Fatal("failure canary")
|
|
}
|