1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-05 02:22:31 +01:00
Radarr/NzbDrone.Libraries.Test/JsonTests/JsonFixture.cs

24 lines
522 B
C#
Raw Normal View History

2013-05-13 04:52:55 +02:00
using NUnit.Framework;
2013-05-12 17:18:17 +02:00
using NzbDrone.Common.Serializer;
using NzbDrone.Test.Common;
2013-04-17 01:21:03 +02:00
2013-05-13 04:52:55 +02:00
namespace NzbDrone.Libraries.Test.JsonTests
2013-04-17 01:21:03 +02:00
{
[TestFixture]
2013-05-13 04:52:55 +02:00
public class JsonFixture : TestBase
2013-04-17 01:21:03 +02:00
{
public class TypeWithNumbers
{
public int Id { get; set; }
}
[Test]
public void should_be_able_to_deserialize_numbers()
{
var quality = new TypeWithNumbers { Id = 12 };
Json.Deserialize<TypeWithNumbers>(quality.ToJson());
2013-04-17 01:21:03 +02:00
}
}
}