Xamarin Public Jenkins (auto-signing) 6123a772ed Imported Upstream version 5.8.0.88
Former-commit-id: 4b7216ffda08448e562271ce733688e761120fc5
2017-11-28 19:36:51 +00:00

64 lines
1.8 KiB
C#

//
// AsyncOperationManager.cs
//
// Author:
// Jonathan Pobst <monkey@jpobst.com>
//
// Copyright (C) 2007 Novell, Inc.
//
using System;
using System.Threading;
using System.ComponentModel;
using System.Globalization;
using NUnit.Framework;
namespace MonoTests.System.ComponentModel
{
[TestFixture]
public class AsyncOperationManagerTest
{
[Test]
public void SyncContext ()
{
SynchronizationContext sc1 = new SynchronizationContext ();
SynchronizationContext sc2 = new SynchronizationContext ();
#if MONOTOUCH
Assert.IsNotNull (SynchronizationContext.Current, "A1");
#else
Assert.IsNull (SynchronizationContext.Current, "A1");
#endif
Assert.IsNotNull (AsyncOperationManager.SynchronizationContext, "A2");
Assert.IsNotNull (SynchronizationContext.Current, "A3");
SynchronizationContext.SetSynchronizationContext (sc1);
Assert.AreSame (sc1, SynchronizationContext.Current, "A4");
Assert.AreSame (sc1, AsyncOperationManager.SynchronizationContext, "A5");
AsyncOperationManager.SynchronizationContext = sc2;
Assert.AreSame (sc2, SynchronizationContext.Current, "A6");
Assert.AreSame (sc2, AsyncOperationManager.SynchronizationContext, "A7");
SynchronizationContext.SetSynchronizationContext (null);
Assert.IsNull (SynchronizationContext.Current, "A8");
// This is a brand new one, not sc1 or sc2
Assert.IsNotNull (AsyncOperationManager.SynchronizationContext, "A9");
Assert.IsNotNull (SynchronizationContext.Current, "A10");
AsyncOperationManager.SynchronizationContext = null;
Assert.IsNull (SynchronizationContext.Current, "A11");
// This is a brand new one, not sc1 or sc2
Assert.IsNotNull (AsyncOperationManager.SynchronizationContext, "A12");
Assert.IsNotNull (SynchronizationContext.Current, "A13");
}
}
}