mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-29 06:55:27 +08:00
13 lines
156 B
Go
13 lines
156 B
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestCodegen(t *testing.T) {
|
|
_, err := codegen()
|
|
assert.NoError(t, err)
|
|
}
|