aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests/Common/TestHelper.cs
diff options
context:
space:
mode:
authorAdam Frisby2008-02-08 17:54:30 +0000
committerAdam Frisby2008-02-08 17:54:30 +0000
commita1625a54104da7872c15618db9e68656c6f6ec2a (patch)
tree2c9847e3085ee1c3252471af9c393a7f8265de3f /OpenSim/Tests/Common/TestHelper.cs
parent* Adding console spam to help track 'The Steve Bug'. (diff)
downloadopensim-SC_OLD-a1625a54104da7872c15618db9e68656c6f6ec2a.zip
opensim-SC_OLD-a1625a54104da7872c15618db9e68656c6f6ec2a.tar.gz
opensim-SC_OLD-a1625a54104da7872c15618db9e68656c6f6ec2a.tar.bz2
opensim-SC_OLD-a1625a54104da7872c15618db9e68656c6f6ec2a.tar.xz
* Applying mantis 339 patches round 2 -- Thanks daedius
Diffstat (limited to '')
-rw-r--r--OpenSim/Tests/Common/TestHelper.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/OpenSim/Tests/Common/TestHelper.cs b/OpenSim/Tests/Common/TestHelper.cs
new file mode 100644
index 0000000..f59c157
--- /dev/null
+++ b/OpenSim/Tests/Common/TestHelper.cs
@@ -0,0 +1,25 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5namespace OpenSim.Tests.Common
6{
7 public delegate void TestDelegate();
8
9 public class TestHelper
10 {
11 public static bool AssertThisDelegateCausesArgumentException(TestDelegate d)
12 {
13 try
14 {
15 d();
16 }
17 catch(ArgumentException e)
18 {
19 return true;
20 }
21
22 return false;
23 }
24 }
25}