mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-11 18:11:21 +08:00
16 lines
247 B
Go
16 lines
247 B
Go
package sdk
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestGA4(t *testing.T) {
|
|
ga4Client := NewGA4Client(ga4MeasurementID, ga4APISecret, false)
|
|
|
|
event := Event{
|
|
Name: "hrp_debug_event",
|
|
Params: map[string]interface{}{},
|
|
}
|
|
ga4Client.SendEvent(event)
|
|
}
|