Are these statements equivalent (Am I getting the same object)?
unity.Resolve<ITest>();
and
unity.Resolve<ITest>(name : null);
If not what is the default name when I register without passing in the name parameter?
Eg. when I do this:
unity.RegisterType<ITest,Test>();