ppanel-server/pkg/countryCenter/county_center_test.go
2025-09-27 10:17:16 +08:00

15 lines
281 B
Go

package countryCenter
import (
"testing"
)
func TestGetCountryCenter(t *testing.T) {
lat, lon, found := GetCountryCenterByCountryOrCity("SG", "Singapore")
if !found {
t.Error("GetCountryCenter('HK') should return found = true")
}
t.Logf("lat = %v, lon = %v", lat, lon)
}