ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
[TOC] > [github.com](https://github.com/stretchr/testify) ## demo ``` func TestIsIPV4WithTestify(t *testing.T) { // 调用方式一 assertion := assert.New(t) assertion.False(IsIPV4("192.168.0")) // 方式二 assert.Equal(t, 123, 123, "they should be equal") } ```