Add test value to queue item varaible

Hi
Is there some way to add dummy value to queue item( transaction item) variable?
I am in testing stage and I don’t want to play with queue in orchestrator as it’s prod.

in some test routines we do work with faked, dummy queue items. Maybe you can do the same.

Assign activity
myFakeTI | Datatype: QueueItem = new QueueItem()

Assign activity
myFakeTI.SpecificContent = new Dictionary(Of String, Object) From {{“A”,123},{“B”,“DummyValue”}}

Some properties from the Fake QueueItem were Null, but did not harm as it was not involved within the tests

3 Likes

Create a test queue and work from there.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.