Files
httprunner/hrp/code/code_test.go
2024-08-27 20:25:13 +08:00

13 lines
152 B
Go

package code
import (
"fmt"
"testing"
)
func TestGetErrorCode(t *testing.T) {
err := LoadYAMLError
code := GetErrorCode(err)
fmt.Println(code)
}