(t *testing.T)
| 391 | } |
| 392 | |
| 393 | func TestNewLogHandler(t *testing.T) { |
| 394 | handler := NewLogHandler() |
| 395 | assert.NotNil(t, handler) |
| 396 | |
| 397 | handlerWithOpts := NewLogHandler(WithFunctionARN(), WithTenantID()) |
| 398 | assert.NotNil(t, handlerWithOpts) |
| 399 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…