mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-04 01:42:15 +08:00
Related to #39095 https://go.dev/doc/modules/version-numbers Update pkg version according to golang dep version convention --------- Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
23 lines
443 B
Go
23 lines
443 B
Go
package helper
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/milvus-io/milvus/pkg/v2/streaming/util/types"
|
|
"github.com/milvus-io/milvus/pkg/v2/streaming/walimpls"
|
|
)
|
|
|
|
func TestWALHelper(t *testing.T) {
|
|
h := NewWALHelper(&walimpls.OpenOption{
|
|
Channel: types.PChannelInfo{
|
|
Name: "test",
|
|
Term: 1,
|
|
},
|
|
})
|
|
assert.NotNil(t, h.Channel())
|
|
assert.Equal(t, h.Channel().Name, "test")
|
|
assert.NotNil(t, h.Log())
|
|
}
|