I am using CodeDom to generate a class which include some methods. I was able to declare an attribute for my methods to look similar as what Pex does when it creates a parameterized unit test:
[PexMethod]
public void myMethod()
However I would like to include something more to it like:
[PexMethod (Max Branches = 1000)]
public void myMethod()
But I am not able to include the ((Max Branches = 1000))
. Could you somebody help me a bit?