Files
ICD.Common.Utils/ICD.Common.Utils.Tests/EventArguments/GenericEventArgsTest.cs
2017-11-12 08:59:09 -05:00

12 lines
215 B
C#

using ICD.Common.Utils.EventArguments;
using NUnit.Framework;
namespace ICD.Common.Utils.Tests.EventArguments
{
public abstract class GenericEventArgsTest
{
[Test]
public abstract void DataTest();
}
}