github.com/voedger/voedger@v0.0.0-20240520144910-273e84102129/pkg/state/teststate/consts.go (about) 1 /* 2 * Copyright (c) 2024-present unTill Software Development Group B. V. 3 * @author Michael Saigachenko 4 */ 5 package teststate 6 7 import ( 8 "github.com/voedger/voedger/pkg/appdef" 9 "github.com/voedger/voedger/pkg/istructs" 10 ) 11 12 const ( 13 ProcKind_Actualizer = iota 14 ProcKind_CommandProcessor 15 ProcKind_QueryProcessor 16 ) 17 18 const ( 19 TestPkgAlias = "tstpkg" 20 TestPartition = istructs.PartitionID(1) 21 ) 22 23 var IntentsLimit = 10 24 var BundlesLimit = 10 25 var AppQName_test = istructs.NewAppQName("test", "app") 26 var newWorkspaceCmd = appdef.NewQName("sys", "NewWorkspace")