Test_Listen_TLSCertFiles() — fiber Function Reference
Architecture documentation for the Test_Listen_TLSCertFiles() function in listen_test.go from the fiber codebase.
Entity Profile
Dependency Diagram
graph TD ab4cda18_d249_158b_a504_d21b532816d5["Test_Listen_TLSCertFiles()"] edd60c6a_f37d_c392_5301_d2d5a002990a["listen_test.go"] ab4cda18_d249_158b_a504_d21b532816d5 -->|defined in| edd60c6a_f37d_c392_5301_d2d5a002990a style ab4cda18_d249_158b_a504_d21b532816d5 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
listen_test.go lines 426–442
func Test_Listen_TLSCertFiles(t *testing.T) {
t.Parallel()
app := New()
go func() {
time.Sleep(1000 * time.Millisecond)
assert.NoError(t, app.Shutdown())
}()
require.NoError(t, app.Listen(":0", ListenConfig{
DisableStartupMessage: true,
CertFile: "./.github/testdata/ssl.pem",
CertKeyFile: "./.github/testdata/ssl.key",
CertClientFile: "./.github/testdata/ssl.pem",
}))
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does Test_Listen_TLSCertFiles() do?
Test_Listen_TLSCertFiles() is a function in the fiber codebase, defined in listen_test.go.
Where is Test_Listen_TLSCertFiles() defined?
Test_Listen_TLSCertFiles() is defined in listen_test.go at line 426.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free