Do you need to unit test constructors, say I have a ctor like this,
IMapinfoWrapper wrapper;
public SystemInfo(IMapinfoWrapper mapinfoWrapper)
{
this.wrapper = mapinfoWrapper;
}
Do I need to write a unit test for this ctor? I don't have any getters for the wrapper variable, so I don't need to test that.