mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-11 18:11:21 +08:00
13 lines
152 B
Go
13 lines
152 B
Go
package code
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestGetErrorCode(t *testing.T) {
|
|
err := LoadYAMLError
|
|
code := GetErrorCode(err)
|
|
fmt.Println(code)
|
|
}
|