1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Libraries.Test/JsonTests/JsonFixture.cs

30 lines
862 B
C#
Raw Normal View History

using System;
using FluentAssertions;
2013-05-13 05:52:55 +03:00
using NUnit.Framework;
2013-05-12 18:18:17 +03:00
using NzbDrone.Common.Serializer;
using NzbDrone.Test.Common;
2013-04-17 02:21:03 +03:00
2013-05-13 05:52:55 +03:00
namespace NzbDrone.Libraries.Test.JsonTests
2013-04-17 02:21:03 +03:00
{
[TestFixture]
2013-05-13 05:52:55 +03:00
public class JsonFixture : TestBase
2013-04-17 02:21:03 +03:00
{
public class TypeWithNumbers
{
public int Int32 { get; set; }
public Int64 Int64 { get; set; }
public int? nullableIntIsNull { get; set; }
public int? nullableWithValue { get; set; }
2013-04-17 02:21:03 +03:00
}
[Test]
public void should_be_able_to_deserialize_numbers()
{
var quality = new TypeWithNumbers { Int32 = Int32.MaxValue, Int64 = Int64.MaxValue, nullableWithValue = 12 };
var result = Json.Deserialize<TypeWithNumbers>(quality.ToJson());
2013-04-17 02:21:03 +03:00
result.ShouldHave().AllProperties().EqualTo(quality);
2013-04-17 02:21:03 +03:00
}
}
}