I'm a big advocate of learn-by-doing, so I'm not going to give you the code outright, but I will try to steer you towards some help.
I suggest that you start by looking at the Examples directory in the API help file, specifically at the Planning Tests Code Samples > Finding Tests and Test Folders Code Samples. Those examples aren't for Test Configurations specifically but can help you become familiar with the general concepts of how to use Factory objects and Filters to find specific entities. In general you
- establish a connection
- instantiate a factory
- define a filter for what you want to find
- use the NewList method of the factory to retrieve the entities you want, using the filter criteria you defined.
Since you are trying to do this in workflow code, you should also look in the Administrator Guide and the Workflow Examples chapter. Specifically look at the example "Example: Copying Field Values to Another Object". Again the example doesn't deal specifically with the Test Config entity, but it will give you the general concepts of manipulating an out-of-context entity through the workflows.
After you've looked those documents over, come back to forum with questions.