Additional test stubs

This commit is contained in:
Chris Cameron
2017-11-12 08:59:09 -05:00
parent a5edce7138
commit 47c0f50f02
4 changed files with 81 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
using ICD.Common.Utils.EventArguments;
using NUnit.Framework;
namespace ICD.Common.Utils.Tests.EventArguments
{
public abstract class GenericEventArgsTest
{
[Test]
public abstract void DataTest();
}
}