Files
llm-intelligence/scripts/import_catalog_seed_verification_test.go

12 lines
290 B
Go
Raw Normal View History

//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)
}
}