TFS 2010 Workflow Unit Testing

I am trying to load a TFS 2010 workflow into unit test. This workflow has a number of custom workflow actions used to customize our build process, because previously there was no functionality for what we need to do, what we can find. I want to shorten the testing process of this custom workflow as much as possible, hence module testing. Anyone have experience with this? Does anyone know how to manually load a TFS workflow into code?

+4
source share
1 answer

I put the main functionalities of the workflow into classes, used them in my actions and tested them separately.

After that, I myself test the workflow itself with WorkFlowApplication .

In addition, I am doing some integration tests for the team itself.

Some resources can be found here , here and here.

+1
source

All Articles