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 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
|
//
// System.ComponentModel.EventHandlerList test cases
//
// Authors:
// Gonzalo Paniagua Javier (gonzalo@ximian.com)
// Martin Willemoes Hansen (mwh@sysrq.dk)
//
// (c) 2002 Ximian, Inc. (http://www.ximian.com)
// (c) 2003 Martin Willemoes Hansen
//
#define NUNIT // Comment out this one if you wanna play with the test without using NUnit
#if NUNIT
using NUnit.Framework;
#else
using System.Reflection;
#endif
using System;
using System.ComponentModel;
namespace MonoTests.System.ComponentModel
{
#if NUNIT
[TestFixture]
public class EventHandlerListTests
{
#else
public class EventHandlerListTests
{
#endif
#if NUNIT
[SetUp]
public void GetReady ()
{
#else
static EventHandlerListTests ()
{
#endif
}
int calls = 0;
void Deleg1 (object o, EventArgs e)
{
calls++;
}
void Deleg2 (object o, EventArgs e)
{
calls <<= 1;
}
[Test]
public void All ()
{
EventHandlerList list = new EventHandlerList ();
string i1 = "i1";
string i2 = "i2";
EventHandler one = new EventHandler (Deleg1);
EventHandler two = new EventHandler (Deleg2);
EventHandler d;
Assertion.AssertEquals ("All #01", null, list [i1]);
Assertion.AssertEquals ("All #02", null, list [i2]);
list.AddHandler (i1, one);
d = list [i1] as EventHandler;
Assertion.Assert ("All #03", d != null);
d (this, EventArgs.Empty);
Assertion.AssertEquals ("All #04", 1, calls);
list.AddHandler (i2, two);
d = list [i1] as EventHandler;
Assertion.Assert ("All #05", d != null);
d (this, EventArgs.Empty);
Assertion.AssertEquals ("All #06", 2, calls);
d = list [i2] as EventHandler;
Assertion.Assert ("All #07", d != null);
d (this, EventArgs.Empty);
Assertion.AssertEquals ("All #08", 4, calls);
list.AddHandler (i2, two);
d = list [i2] as EventHandler;
Assertion.Assert ("All #08", d != null);
d (this, EventArgs.Empty);
Assertion.AssertEquals ("All #09", 16, calls);
list.RemoveHandler (i1, one);
d = list [i1] as EventHandler;
Assertion.Assert ("All #10", d == null);
list.RemoveHandler (i2, two);
d = list [i2] as EventHandler;
Assertion.Assert ("All #11", d != null);
list.RemoveHandler (i2, two);
d = list [i2] as EventHandler;
Assertion.Assert ("All #12", d == null);
list.AddHandler (i1, one);
d = list [i1] as EventHandler;
Assertion.Assert ("All #13", d != null);
list.AddHandler (i2, two);
d = list [i2] as EventHandler;
Assertion.Assert ("All #14", d != null);
list.AddHandler (i1, null);
Assertion.Assert ("All #15", list [i1] != null);
list.AddHandler (i2, null);
Assertion.Assert ("All #16", list [i2] != null);
list.Dispose ();
}
#if !NUNIT
void Assert (string msg, bool result)
{
if (!result)
Console.WriteLine (msg);
}
void AssertEquals (string msg, object expected, object real)
{
if (expected == null && real == null)
return;
if (expected != null && expected.Equals (real))
return;
Console.WriteLine ("{0}: expected: '{1}', got: '{2}'", msg, expected, real);
}
void Fail (string msg)
{
Console.WriteLine ("Failed: {0}", msg);
}
static void Main ()
{
EventHandlerListTests p = new EventHandlerListTests ();
Type t = p.GetType ();
MethodInfo [] methods = t.GetMethods ();
foreach (MethodInfo m in methods) {
if (m.Name.Substring (0, 4) == "Test") {
m.Invoke (p, null);
}
}
}
#endif
}
}
|