Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/buger/goreplay
Clone or Download
settings_test.go 180 Bytes
Copy Edit Raw Blame History
Dima Golomozy authored 2023-01-12 17:24 . goreplay-cli package (#1148)
package goreplay
import (
"encoding/json"
"testing"
)
func TestAppSettings(t *testing.T) {
a := AppSettings{}
_, err := json.Marshal(&a)
if err != nil {
t.Error(err)
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化