/// <summary>
 /// Signals that the <see cref="SetUpFixture"/> should not delete the files it generates. Call this ad-hoc in a test to keep the files and inspect
 /// them with Reflector or ildasm.
 /// </summary>
 public void SkipDeletion()
 {
     SetUpFixture.SkipDeletion();
 }
 protected void AddSavedAssembly(string assemblyPath)
 {
     ArgumentUtility.CheckNotNullOrEmpty("assemblyPath", assemblyPath);
     SetUpFixture.AddSavedAssembly(assemblyPath);
 }