projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
8555: Reformat test cases.
[arvados.git]
/
services
/
keepstore
/
logging_router_test.go
1
package main
2
3
import (
4
"net/http"
5
"testing"
6
)
7
8
func TestLoggingResponseWriterImplementsCloseNotifier(t *testing.T) {
9
http.ResponseWriter(&LoggingResponseWriter{}).(http.CloseNotifier).CloseNotify()
10
}