mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-29 06:55:27 +08:00
issue: #33285 - use reader but not consumer for pulsar - advanced test framework - move some streaming related package into pkg --------- Signed-off-by: chyezh <chyezh@outlook.com>
12 lines
207 B
Go
12 lines
207 B
Go
package walimplstest
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/milvus-io/milvus/pkg/streaming/walimpls"
|
|
)
|
|
|
|
func TestWALImplsTest(t *testing.T) {
|
|
walimpls.NewWALImplsTestFramework(t, 100, &openerBuilder{}).Run()
|
|
}
|