Files
opensim/OpenSim/Tests/Common/TestHelper.cs
Justin Clarke Casey 24ac86931a update eol-style
2008-02-08 18:18:56 +00:00

26 lines
478 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace OpenSim.Tests.Common
{
public delegate void TestDelegate();
public class TestHelper
{
public static bool AssertThisDelegateCausesArgumentException(TestDelegate d)
{
try
{
d();
}
catch(ArgumentException e)
{
return true;
}
return false;
}
}
}