star/httpserver/goserver_test.go
2024-09-15 15:27:50 +08:00

11 lines
154 B
Go

package httpserver
import (
"net/http"
"testing"
)
func TestHttpServer(t *testing.T) {
http.ListenAndServe(":89", http.FileServer(http.Dir(`./`)))
}