mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-01-11 19:44:55 +00:00
14 lines
244 B
C#
14 lines
244 B
C#
using NUnit.Framework;
|
|
|
|
namespace ICD.Common.Utils.Tests.Json
|
|
{
|
|
public abstract class AbstractGenericJsonConverterTest
|
|
{
|
|
[Test]
|
|
public abstract void WriteJsonTest();
|
|
|
|
[Test]
|
|
public abstract void ReadJsonTest();
|
|
}
|
|
}
|