Imported Upstream version 4.0.0~alpha1

Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
This commit is contained in:
Jo Shields
2015-04-07 09:35:12 +01:00
parent 283343f570
commit 3c1f479b9d
22469 changed files with 2931443 additions and 869343 deletions

View File

@ -593,7 +593,6 @@ namespace MonoTests.System.Diagnostics
}
}
#if NET_2_0
[Test]
public void Start_UseShellExecuteWithEmptyUserName ()
{
@ -629,7 +628,6 @@ namespace MonoTests.System.Diagnostics
} catch (Win32Exception) {
}
}
#endif
[Test] // Start (string, string)
public void Start4_FileName_Null ()
@ -724,7 +722,6 @@ namespace MonoTests.System.Diagnostics
public int bytesRead = -1;
#if NET_2_0
// Not technically a 2.0 only test, but I use lambdas, so I need gmcs
[Test]
@ -827,7 +824,6 @@ namespace MonoTests.System.Diagnostics
Assert.IsNull (e.InnerException, "IOE inner exception should be null");
}
#endif
[Test]
public void Handle_ThrowsOnNotStarted ()
@ -839,5 +835,10 @@ namespace MonoTests.System.Diagnostics
} catch (InvalidOperationException) {
}
}
[Test]
public void HasExitedCurrent () {
Assert.IsFalse (Process.GetCurrentProcess ().HasExited);
}
}
}