chore: sonar scan test #1

Open
demo-bot wants to merge 6 commits from dev into main
Showing only changes of commit a13242bc87 - Show all commits

16
main_test.go Normal file
View File

@@ -0,0 +1,16 @@
package main
import (
"net/http"
"net/http/httptest"
"testing"
)
func TestHealth(t *testing.T) {
req := httptest.NewRequest(http.MethodGet, "/health", nil)
rec := httptest.NewRecorder()
healthHandler(rec, req)
if rec.Code != http.StatusOK {
t.Fatalf("expected 200, got %d", rec.Code)
}
}