golang 代码扩展
package testimport ( "testing" "fmt")//定义结构体type Option struct { Key string //方法名称 P1 int //参数1 P2 int //参数2}func Test_1(t *testing.T) {//定义两种方法,加和减 tt := &Option{ Key:"plus", P1