Exporting a work space is perfect and works without any mistakes. However, All the testing data in the newly imported project are missing. The only available workaround is to export your BOs one by one and then export them one by one too.
I would recommend a new feature of exporting all testing data in one file, binary is fine, then import them all in one command as well. Another workaround is to write your own process of exporting one BO by one to CSV files and store them in the disk and then import them one by one using another long process too.
If we have a method of enumerating the BOs like this:
Foreach BO in WS.BOs:
export BO to "c:\data\"+BO.name+".csv"
this would make the creating of the export process faster and agnostic to the BO names.
We also need loop to import the files to the BOs again. like so:
Foreach File in 'C:\data\':
import File to BO(File.name)
OR
Foreach File in 'C:\data\':
import File to BO( replace(File.fullname,'.csv',''))
Appreciate your recommendation here,
Thanks