FlexTradeUKLtd / jfixture

JFixture is an open source library based on the popular .NET library, AutoFixture
MIT License
105 stars 22 forks source link

Does not handle generic classes with nested generic types #10

Closed richkeenan closed 9 years ago

richkeenan commented 9 years ago

For example

public class Foo<T> {
   public List<T> list;
}

Fails to create the object due to the new changes gone into the SpecimenType class. Should just need to change the logic that calculates the return type of a field/setter to handle this situation.