Run/Test Microflow

0
How do you run/test a microflow in Studio Pro
asked
2 answers
2

See the documentation here: https://docs.mendix.com/refguide/debug-microflows-and-nanoflows/

When running your model locally you can set breakpoints on your microflow and step through it to see what is happening. And you could even debug a live environment this way when you connect the debugger to a licensed node.

 

Regards,

Ronald

 

answered
1

In addition to Ronald’s answer, there is also the Unit Testing module.

This allows you to test microflows automatically and is really useful when working on a project to test changes you’ve made doesn’t break any other functionality. It works best if your break your microflows down into smaller, testable sub microflows.

https://docs.mendix.com/refguide/testing-microflows-with-unit-testing-module/

I hope this helps.

answered