1 Star 0 Fork 0

flanche/clickhouse-go

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
clickhouse_naive_test.go 589 Bytes
一键复制 编辑 原始数据 按行查看 历史
kshvakov 提交于 2017-01-27 09:35 . update readme
package clickhouse
import (
"fmt"
"testing"
"github.com/stretchr/testify/assert"
)
func Test_Naive_Result(t *testing.T) {
var result result
if _, err := result.LastInsertId(); assert.Error(t, err) {
if rows, err := result.RowsAffected(); assert.Error(t, err) {
assert.Equal(t, int64(0), rows)
}
}
}
func Test_Naive_Exception(t *testing.T) {
exception := Exception{
Code: 42,
Message: "test",
}
if assert.Implements(t, (*error)(nil), &exception) {
assert.Equal(t, fmt.Sprintf("code: %d, message: %s", exception.Code, exception.Message), exception.Error())
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/flanche/clickhouse-go.git
git@gitee.com:flanche/clickhouse-go.git
flanche
clickhouse-go
clickhouse-go
master

搜索帮助