You've already forked linux-packaging-mono
Imported Upstream version 6.8.0.73
Former-commit-id: d18deab1b47cfd3ad8cba82b3f37d00eec2170af
This commit is contained in:
parent
bceda29824
commit
73ee7591e8
@ -198,6 +198,25 @@ namespace MonoTests.System
|
||||
}
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void ApplicationBase9 ()
|
||||
{
|
||||
AppDomainSetup setup = new AppDomainSetup ();
|
||||
string url = "file://";
|
||||
if (RunningOnWindows)
|
||||
{
|
||||
url += "/" + Environment.CurrentDirectory;
|
||||
setup.ApplicationBase = url;
|
||||
Assert.AreEqual (Environment.CurrentDirectory, setup.ApplicationBase);
|
||||
}
|
||||
else
|
||||
{
|
||||
url += "/home";
|
||||
setup.ApplicationBase = url;
|
||||
Assert.AreEqual ("/home", setup.ApplicationBase);
|
||||
}
|
||||
}
|
||||
|
||||
#if MONO_FEATURE_MULTIPLE_APPDOMAINS
|
||||
[Test]
|
||||
#if MOBILE
|
||||
|
Reference in New Issue
Block a user