Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
brunobuzzi committed Apr 23, 2021
1 parent a8cc229 commit a0dfd57
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ createSystemDefaultObjects

self defaultBpmApplicationClass initializeCache.
application := (BpmApplication newNamed: 'admins') addToCache.
application initializeForBpmFlow.

adminUser := self defaultBpmUserClass addAdminUser.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"class" : {
"createSystemDefaultObjects" : "brunobb 02/06/2020 08:00",
"createSystemDefaultObjects" : "brunobb 04/23/2021 09:11",
"initializeCurrentSystem" : "brunobb 02/17/2021 10:41",
"resetCurrentSystem" : "brunobb 02/10/2020 11:13" },
"instance" : {
Expand Down
2 changes: 1 addition & 1 deletion repository/BpmRuntime.package/monticello.meta/version

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
create random process
formInstance_withValues: anArray in: aBpmProcessInstance

^self formCreatorClass createFormInstance: #form_allTypes_name:amount:time:timeStamp:date:bool:
withValues: anArray
definitionNamed: 'all-field-types'
app: 'ue'
definitionMethod: #formDefinition_all_types
in: aBpmProcessInstance
^self formCreatorClass
buildFormInstanceFrom: (self newInstanceTemplate formInstance_ue_allTypes_name: (anArray at: 1) amount: (anArray at: 2) time: (anArray at: 3) timeStamp: (anArray at: 4) date: (anArray at: 5) bool: (anArray at: 6))
definitionNamed: 'all-field-types'
app: 'ue'
definitionMethod: self newDefinitionTemplate formDefinition_ue_all_field_types
in: aBpmProcessInstance
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"createProcessDefinition" : "brunobb 08/19/2020 04:46",
"createRandomProcess:fromYear:toYear:fromMonthNumber:toMonthNumber:" : "brunobb 06/20/2019 05:13",
"executeProcess:withFormValues:in:" : "brunobb 08/06/2020 11:27",
"formInstance_withValues:in:" : "brunobb 11/08/2018 08:25",
"formInstance_withValues:in:" : "brunobb 04/23/2021 09:04",
"generateRandomValuesIn:" : "brunobb 06/20/2019 05:27",
"setUp" : "brunobb 05/23/2019 10:00",
"tearDown" : "brunobb 05/23/2019 09:04",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ testInitializeCurrentSystem

BpmSystemInitialization initializeCurrentSystem.

self assert: self defaultEnvironmentClass cache isEmpty.
self assert: self defaultApplicationManagerClass cache isEmpty.
self assert: self defaultApplicationUserClass cache isEmpty.
self assert: self defaultBpmUserClass cache isEmpty.
self assert: self defaultEnvironmentClass cache size equals: 1.
self assert: self defaultApplicationManagerClass cache size equals: 1.
self assert: self defaultApplicationUserClass cache size equals: 1.
self assert: self defaultBpmUserClass cache size equals: 1.

self assert: BpmProcessDefinitionCategory cache isEmpty.
self assert: BpmProcessInstanceCategory cache isEmpty.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
},
"instance" : {
"testCreateSystemDefaultObjects" : "brunobb 02/10/2020 11:02",
"testInitializeCurrentSystem" : "brunobb 02/10/2020 11:13",
"testInitializeCurrentSystem" : "brunobb 04/23/2021 09:13",
"testResetCurrentSystem" : "bruno 07/24/2020 13:18" } }

Large diffs are not rendered by default.

0 comments on commit a0dfd57

Please sign in to comment.