码迷,mamicode.com
首页 > 其他好文 > 详细

goconvery基本使用

时间:2021-04-20 14:09:28      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:str   sse   add   result   hub   示例   assert   path   http   

goconvery基本使用

(1.)项目地址

https://github.com/smartystreets/goconvery

(2.)安装

go get -u github.com/smartystreets/goconvery/convery

(3.)启动UI界面

$GOPATH/bin/goconvery

(4.)使用示例

import(
    "testing"
    . "github.com/smartystreets/goconvery/convery"
)

func TestAdd(t *testing.T) {
    Convery("Params",t,func(){
        a := 2
        b := 4

        Convery("add two number",func(){
            c := a+b

            Convery ("result assert",func(){
                So (c%2,ShouldEqual,0)
            })
        })
    })
}

goconvery基本使用

标签:str   sse   add   result   hub   示例   assert   path   http   

原文地址:https://www.cnblogs.com/tomtellyou/p/14672010.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!