2 // LazyTest.cs - NUnit Test Cases for Lazy
5 // Zoltan Varga (vargaz@gmail.com)
7 // Copyright (C) 2009 Novell, Inc (http://www.novell.com)
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32 using System
.Reflection
;
33 using System
.Reflection
.Emit
;
34 using System
.Threading
;
35 using NUnit
.Framework
;
37 #pragma warning disable 219
38 #pragma warning disable 168
40 namespace MonoTests
.System
46 [ExpectedException (typeof (ArgumentNullException
))]
47 public void Ctor_Null_1 () {
52 [ExpectedException (typeof (ArgumentNullException
))]
53 public void Ctor_Null_2 () {
54 new Lazy
<int> (null, false);
58 public void IsValueCreated () {
59 var l1
= new Lazy
<int> ();
61 Assert
.IsFalse (l1
.IsValueCreated
);
65 Assert
.IsTrue (l1
.IsValueCreated
);
69 public void DefaultCtor () {
70 var l1
= new Lazy
<DefaultCtorClass
> ();
73 Assert
.AreEqual (5, o
.Prop
);
76 class DefaultCtorClass
{
77 public DefaultCtorClass () {
87 public void NoDefaultCtor () {
88 var l1
= new Lazy
<NoDefaultCtorClass
> ();
93 } catch (MissingMemberException
) {
97 class NoDefaultCtorClass
{
98 public NoDefaultCtorClass (int i
) {
103 public void NotThreadSafe () {
104 var l1
= new Lazy
<int> ();
106 Assert
.AreEqual (0, l1
.Value
);
108 var l2
= new Lazy
<int> (delegate () { return 42; }
);
110 Assert
.AreEqual (42, l2
.Value
);
116 public void EnsureSingleThreadSafeExecution () {
119 //var l = new Lazy<int> (delegate () { return counter ++; }, LazyExecutionMode.NotThreadSafe);
120 var l
= new Lazy
<int> (delegate () { return counter ++; }
, true);
122 object monitor
= new object ();
123 var threads
= new Thread
[10];
124 for (int i
= 0; i
< 10; ++i
) {
125 threads
[i
] = new Thread (delegate () {
127 Monitor
.Wait (monitor
);
132 for (int i
= 0; i
< 10; ++i
)
133 threads
[i
].Start ();
135 Monitor
.PulseAll (monitor
);
137 Assert
.AreEqual (42, l
.Value
);
141 public void InitRecursion ()
143 Lazy
<DefaultCtorClass
> c
= null;
144 c
= new Lazy
<DefaultCtorClass
> (() => { Console.WriteLine (c.Value); return null; }
);
149 } catch (InvalidOperationException
) {