博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Go语言表组测试示例
阅读量:6759 次
发布时间:2019-06-26

本文共 952 字,大约阅读时间需要 3 分钟。

比基本测试多个循环。。。

package mainimport (	"testing"	"net/http")const checkMark = " OK! "const ballotX = " ERROR! "	func TestDownload(t *testing.T) {	var urls = []struct {		url 	string		statusCode int	}{		{			"http://localhost:8000/test.html", http.StatusOK,		},		{			"http://localhost:8000/test.html2", http.StatusNotFound,		},	}			t.Log("Given the need to test downloading content.")	{		for _, u := range urls {			t.Logf("\tWhen checking \"%s\" for status code \"%d\"", u.url, u.statusCode)			{				resp, err := http.Get(u.url)				if err != nil {					t.Fatal("\tShould be able to make the Get call.", ballotX, err)				}				t.Log("\t\tShould be able to make the Get call.", checkMark)				defer resp.Body.Close()								if resp.StatusCode == u.statusCode {					t.Logf("\t\tShould receive a \"%d\" status, %v", u.statusCode, checkMark)				} else {					t.Errorf("\t\tShould receive a \"%d\" status. %v %v", u.statusCode, ballotX, resp.StatusCode)				}			}		}	}}

  

转载地址:http://pfweo.baihongyu.com/

你可能感兴趣的文章
linux常用命令
查看>>
浅谈ListBox在Windows Phone 7 中的使用(2)
查看>>
python 文件处理模块的使用,给一个文件写入数据
查看>>
Html基础
查看>>
Cisco数据中心理论小记-2
查看>>
Mac下设置java_home
查看>>
mysql之数据库基本理念
查看>>
Check SQL Server Backup History Record
查看>>
ECharts使用技巧
查看>>
hadoop2.6.4+centos6.5x64分布式配置
查看>>
mac安装autojump
查看>>
proxool的使用总结
查看>>
纯前端页面的周报
查看>>
AngularJS-源码阅读(三)
查看>>
avalonJS-源码阅读(三) VMODEL
查看>>
tree路径匹配抽象(2)
查看>>
再谈Linux的ulimit
查看>>
【quick-cocos2d-x】自定义事件
查看>>
Apache Kafka:大数据的实时处理时代
查看>>
Hibernate 的helloworld
查看>>