MCPcopy Index your code
hub / github.com/coder/coder / Fatal

Method Fatal

testutil/retry.go:184–188  ·  view source on GitHub ↗

Fatal implements testing.TB. Fatal is equivalent to Log followed by FailNow.

(args ...any)

Source from the content-addressed store, hash-verified

182
183// Fatal implements testing.TB. Fatal is equivalent to Log followed by FailNow.
184func (t *fakeT) Fatal(args ...any) {
185 t.T.Helper()
186 t.T.Log(args...)
187 t.FailNow()
188}
189
190// Fatalf implements testing.TB. Fatalf is equivalent to Logf followed by
191// FailNow.

Callers 15

NewFunction · 0.80
waitForUpdatesFunction · 0.80
TestListChatProvidersFunction · 0.80
TestCreateChatProviderFunction · 0.80
TestMCPServerOAuth2PKCEFunction · 0.80
TestWatchChatGitFunction · 0.80
TestDebugHealthFunction · 0.80
TestConcurrencyLimitFunction · 0.80

Calls 3

FailNowMethod · 0.95
LogMethod · 0.80
HelperMethod · 0.65

Tested by 15

waitForUpdatesFunction · 0.64
TestListChatProvidersFunction · 0.64
TestCreateChatProviderFunction · 0.64
TestMCPServerOAuth2PKCEFunction · 0.64
TestWatchChatGitFunction · 0.64
TestDebugHealthFunction · 0.64
TestConcurrencyLimitFunction · 0.64
TestBackpressureFunction · 0.64