1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
//
// AsyncOperationManager.cs
//
// Author:
// Jonathan Pobst <monkey@jpobst.com>
//
// Copyright (C) 2007 Novell, Inc.
//
#if NET_2_0
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 MOBILE
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");
}
}
}
#endif
|