#define NUNIT using System; using System.Text; using System.Collections; using System.Collections.Generic; using System.Linq; #if !NUNIT #error Currently, Not Supported using Microsoft.VisualStudio.TestTools.UnitTesting; #else using NUnit.Framework; using TestClass = NUnit.Framework.TestFixtureAttribute; using TestMethod = NUnit.Framework.TestAttribute; #endif namespace msgpack.tests { [TestClass] public class BoxingPackerTests { [TestMethod] public void NullTest () { BoxingPacker packer = new BoxingPacker (); Assert.IsNull (packer.Unpack (packer.Pack (null))); } [TestMethod] public void PrimitiveTypeTest () { BoxingPacker packer = new BoxingPacker (); RoundtripTest (packer, 12345); RoundtripTest (packer, 1234567890123456789UL); RoundtripTest (packer, Math.PI); RoundtripTest (packer, true); RoundtripTest (packer, false); } [TestMethod] public void ArrayTest () { BoxingPacker packer = new BoxingPacker (); RoundtripTest (packer, new object[0]); RoundtripTest (packer, new object[]{ int.MinValue, int.MaxValue, 1234567890123456789UL, ulong.MaxValue, float.MinValue, float.MaxValue, float.Epsilon, float.NaN, float.PositiveInfinity, float.NegativeInfinity, double.MinValue, double.MaxValue, double.Epsilon, double.NaN, double.PositiveInfinity, double.NegativeInfinity, null, true, false, new object[] { new object[] {1, 2, 3}, new object[] {Math.PI, true} } }); } [TestMethod] public void MapTest () { BoxingPacker packer = new BoxingPacker (); Dictionary dic = new Dictionary (); Dictionary dic2 = new Dictionary (); RoundtripTest> (packer, dic); dic2.Add (123, 456); dic2.Add (234, 567); dic2.Add (345, 678); dic.Add (0, 0.123); dic.Add (Math.PI, true); dic.Add (false, new object[] {1, 2, 3}); dic.Add (1, new Dictionary (dic2)); RoundtripTest> (packer, dic); dic[1] = ((Dictionary)dic[1]).ToArray (); Assert.AreEqual (dic, packer.Unpack (packer.Pack (dic.ToArray ()))); } void RoundtripTest (BoxingPacker packer, T obj) { T obj2 = (T)packer.Unpack (packer.Pack (obj)); Assert.AreEqual (obj, obj2); } } }