mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-04-12 20:17:15 +00:00
13 lines
244 B
C#
13 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();
|
|
}
|
|
}
|