Hi Mo,
You can't define synchpoints dynamically - you need to add them to the projects beforehand. See
Creating Synchpoints for details. However, you can reuse the same synchpoint multiple times during the distributed test run.
To answer the other question about the way to check whether a specific synchpoint is defined, you can use
aqObject.IsSupported(NetworkSuite.SynchPoints, "SynchpointName") for this purpose. In a C# Connected Application, it should look like this:
, "SynchpointName"))
{
// synchpoint exists
}
else
{
// synchpoint doesn't exist
}