six2six/fixture-factory

bug when looking for properties on a class with inheritance

Closed this issue · 0 comments

Following the example above:

Class A;
Class B extends A{
    private C c;
}
Class C {
    private String value;
} 

When you use method: add("c.value", "someValue"), the framework doesn't work and result in a NullPointerException.