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
|
//
// 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
//
using NUnit.Framework;
using System;
using System.ComponentModel;
namespace MonoTests.System.ComponentModel
{
[TestFixture]
public class EventHandlerListTests
{
[SetUp]
public void GetReady ()
{
}
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 ();
}
[Test]
public void NullKey ()
{
EventHandlerList list = new EventHandlerList ();
EventHandler one = new EventHandler (Deleg1);
list.AddHandler (null, one);
EventHandler d = list [null] as EventHandler;
Assertion.Assert ("NullKey #01", d != null);
list.RemoveHandler (null, one);
d = list [null] as EventHandler;
Assertion.Assert ("NullKey #02", d == null);
}
}
}
|