How to execute each module of a project independently

Hi All

I have a project where i am calling each module from Main. Main is a flowchart and the first sequence in Main is InitialSettings.xaml where I am reading the Config.xlsx and putting in a dictionary. I am passing the dictionary as argument across other modules.

So all other modules have dependency with InitialSettings.xaml. My question is how can we run each module independently ? And is it a good practice ?

Hi @kkpatel

Are you using the REFramework?

You can have a separate testing workflow. In the test workflow, read the init settings and then invoke the workflow that you need to test… That would be the best way to test each module independently

No, I am not using RE Framework.