github.com/easysoft/zendata@v0.0.0-20240513203326-705bd5a7fd67/cmd/test/consts/consts.go (about) 1 package consts 2 3 import "bytes" 4 5 const ( 6 CommandTestFile = "test/unittest/cmd.yaml" 7 CommandTestFile2 = "test/unittest/cmd2.yaml" 8 9 CommandTestFileTables = "test/unittest/tables.sql" 10 CommandTestFileTablesOut = "test/unittest/out/biz_task.yaml" 11 12 CommandTestFileArticle = "test/unittest/article.txt" 13 CommandTestFileArticleOut = "test/unittest/out/article.yaml" 14 CommandTestFileArticleConfig = "test/unittest/article.yaml" 15 16 CommandTestFileProto = "test/unittest/person.proto" 17 CommandTestFileProtoOut = "test/unittest/out/GPBMetadata/Test/Unittest/Person.php" 18 ) 19 20 var ( 21 Buf bytes.Buffer 22 )