12 lines
290 B
Go
12 lines
290 B
Go
|
|
//go:build llm_script
|
||
|
|
|
||
|
|
package main
|
||
|
|
|
||
|
|
import "testing"
|
||
|
|
|
||
|
|
func TestCatalogSeedVerificationImporterKeyConstant(t *testing.T) {
|
||
|
|
if catalogSeedVerificationImporterKey != "import_catalog_seed_verification.go" {
|
||
|
|
t.Fatalf("importer key 常量错误: %q", catalogSeedVerificationImporterKey)
|
||
|
|
}
|
||
|
|
}
|