1 Star 0 Fork 0

systechn/ssh

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
ssh_test.go 243 Bytes
一键复制 编辑 原始数据 按行查看 历史
hloeffler 提交于 2016-12-18 18:47 . fix test
package ssh
import (
"testing"
)
func TestKeysEqual(t *testing.T) {
defer func() {
if r := recover(); r != nil {
t.Errorf("The code did panic")
}
}()
if KeysEqual(nil, nil) {
t.Error("two nil keys should not return true")
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/systechn/ssh.git
git@gitee.com:systechn/ssh.git
systechn
ssh
ssh
master

搜索帮助