Test.CBORExtraTest.TestOther C# (CSharp) Méthode

TestOther() private méthode

private TestOther ( ) : void
Résultat void
        public void TestOther()
        {
            CBORObject cbor = CBORObject.FromObject(new int[2, 3, 2]);
              {
            string stringTemp = cbor.ToJSONString();
            Assert.AreEqual(
              "[[[0,0],[0,0],[0,0]],[[0,0],[0,0],[0,0]]]",
              stringTemp);
            }
              CBORTestCommon.AssertRoundTrip(cbor);
        }