Test_Logger_ErrorTimeZone() — fiber Function Reference
Architecture documentation for the Test_Logger_ErrorTimeZone() function in logger_test.go from the fiber codebase.
Entity Profile
Dependency Diagram
graph TD a5163b2a_678f_a53f_e70d_718c17c3ad85["Test_Logger_ErrorTimeZone()"] 97b45bc9_01a3_2a9a_4c94_9de1344ca94c["logger_test.go"] a5163b2a_678f_a53f_e70d_718c17c3ad85 -->|defined in| 97b45bc9_01a3_2a9a_4c94_9de1344ca94c style a5163b2a_678f_a53f_e70d_718c17c3ad85 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
middleware/logger/logger_test.go lines 322–333
func Test_Logger_ErrorTimeZone(t *testing.T) {
t.Parallel()
app := fiber.New()
app.Use(New(Config{
TimeZone: "invalid",
}))
resp, err := app.Test(httptest.NewRequest(fiber.MethodGet, "/", http.NoBody))
require.NoError(t, err)
require.Equal(t, fiber.StatusNotFound, resp.StatusCode)
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does Test_Logger_ErrorTimeZone() do?
Test_Logger_ErrorTimeZone() is a function in the fiber codebase, defined in middleware/logger/logger_test.go.
Where is Test_Logger_ErrorTimeZone() defined?
Test_Logger_ErrorTimeZone() is defined in middleware/logger/logger_test.go at line 322.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free