SimonTestNet/SimonTest

Static properties generate tests on the instance

Closed this issue · 1 comments

If you have a component with a property:
public static Foo = false;

SimonTest will generate a test on the instance like so:
expect(comp.InitialNavigationComplete).toEqual(false);

This should be (<Class Name>.<propertyName>).toEqual(false);
since the property is static.

Fixed on 0.17.3 =)