public HostingInformation(Type startupType)
 {
     _startupType        = startupType;
     _hostingEnvironment = new TestHostingEnvironment();
     _startup            = System.Activator.CreateInstance(_startupType, _hostingEnvironment);
 }
 public HostingInformation(Type startupType)
 {
     _startupType = startupType;
     _hostingEnvironment = new TestHostingEnvironment();
     _startup = System.Activator.CreateInstance(_startupType, _hostingEnvironment);
 }