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

本文共 1002 字,大约阅读时间需要 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)				}			}		}	}}

  

转载于:https://www.cnblogs.com/aguncn/p/7102562.html

你可能感兴趣的文章
java 常用命令
查看>>
卷积中的参数
查看>>
51nod1076 (边双连通)
查看>>
ViewPager的onPageChangeListener里面的一些方法参数:
查看>>
Linux pipe函数
查看>>
java equals 小记
查看>>
2019春 软件工程实践 助教总结
查看>>
Zerver是一个C#开发的Nginx+PHP+Mysql+memcached+redis绿色集成开发环境
查看>>
多线程实现资源共享的问题学习与总结
查看>>
java实现哈弗曼树
查看>>
程序的静态链接,动态链接和装载 (补充)
查看>>
关于本博客说明
查看>>
线程androidAndroid ConditionVariable的用法
查看>>
python常用模块之sys, os, random
查看>>
HDU 2548 A strange lift
查看>>
Linux服务器在外地,如何用eclipse连接hdfs
查看>>
react双组件传值和传参
查看>>
[Kaggle] Sentiment Analysis on Movie Reviews
查看>>
价值观
查看>>
mongodb命令----批量更改文档字段名
查看>>