mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-04-13 04:26:57 +00:00
10 lines
176 B
C#
10 lines
176 B
C#
using NUnit.Framework;
|
|
|
|
namespace ICD.Common.Utils.Tests.EventArguments
|
|
{
|
|
public abstract class GenericEventArgsTest
|
|
{
|
|
[Test]
|
|
public abstract void DataTest();
|
|
}
|
|
}
|