1 Star 0 Fork 0

TerryLiu / gofail

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
examples.go 1.01 KB
一键复制 编辑 原始数据 按行查看 历史
Benjamin Wang 提交于 2022-11-17 04:47 . remove gofail-go failpoint
// Copyright 2016 CoreOS, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package examples
func ExampleFunc() string {
// gofail: var ExampleString string
// return ExampleString
return "example"
}
func ExampleOneLineFunc() string {
// gofail: var ExampleOneLine struct{}
return "abc"
}
func ExampleLabelsFunc() (s string) {
i := 0
// gofail: myLabel:
for i < 5 {
s = s + "i"
i++
for j := 0; j < 5; j++ {
s = s + "j"
// gofail: var ExampleLabels struct{}
// continue myLabel
}
}
return s
}
1
https://gitee.com/tela2013/gofail.git
git@gitee.com:tela2013/gofail.git
tela2013
gofail
gofail
v0.3.0

搜索帮助