@@ -6281,7 +6281,7 @@ public void TestCalcEncodedSizeCircularRefs3bb() {
62816281 }
62826282
62836283 @ Test (timeout = 10001 )
6284- public void TestCalcEncodedSizeCircularRefs3bc () {
6284+ public void TestCalcEncodedSizeCircularRefs3bc0 () {
62856285 CBORObject cbor ;
62866286 cbor = CBORObject .NewOrderedMap ().Add ("ghi" , 2 ).Add ("abc" , 4 );
62876287 cbor .Add (CBORObject .NewOrderedMap ().Add ("jkl" , cbor ), "test" );
@@ -6294,6 +6294,10 @@ public void TestCalcEncodedSizeCircularRefs3bc() {
62946294 Assert .fail (ex .toString ());
62956295 throw new IllegalStateException ("" , ex );
62966296 }
6297+ }
6298+ @ Test (timeout = 10001 )
6299+ public void TestCalcEncodedSizeCircularRefs3bc1 () {
6300+ CBORObject cbor ;
62976301 cbor = CBORObject .NewOrderedMap ().Add ("ghi" , 2 ).Add ("abc" , 4 );
62986302 cbor .Add ("test" , CBORObject .NewOrderedMap ().Add ("jkl" , cbor ));
62996303 try {
@@ -6305,6 +6309,10 @@ public void TestCalcEncodedSizeCircularRefs3bc() {
63056309 Assert .fail (ex .toString ());
63066310 throw new IllegalStateException ("" , ex );
63076311 }
6312+ }
6313+ @ Test (timeout = 10001 )
6314+ public void TestCalcEncodedSizeCircularRefs3bc2 () {
6315+ CBORObject cbor ;
63086316 cbor = CBORObject .NewOrderedMap ().Add ("ghi" , 2 ).Add ("abc" , 4 );
63096317 cbor .Add (CBORObject .NewOrderedMap ().Add (cbor , "jkl" ), "test" );
63106318 try {
@@ -6315,7 +6323,10 @@ public void TestCalcEncodedSizeCircularRefs3bc() {
63156323 } catch (Exception ex ) {
63166324 Assert .fail (ex .toString ());
63176325 throw new IllegalStateException ("" , ex );
6318- }
6326+ }}
6327+ @ Test (timeout = 10001 )
6328+ public void TestCalcEncodedSizeCircularRefs3bc2a () {
6329+ CBORObject cbor ;
63196330 cbor = CBORObject .NewOrderedMap ().Add ("ghi" , 2 ).Add ("abc" , 4 );
63206331 cbor .Add ("test" , CBORObject .NewOrderedMap ().Add (cbor , "jkl" ));
63216332 try {
@@ -6326,7 +6337,10 @@ public void TestCalcEncodedSizeCircularRefs3bc() {
63266337 } catch (Exception ex ) {
63276338 Assert .fail (ex .toString ());
63286339 throw new IllegalStateException ("" , ex );
6329- }
6340+ }}
6341+ @ Test (timeout = 10001 )
6342+ public void TestCalcEncodedSizeCircularRefs3bc3 () {
6343+ CBORObject cbor ;
63306344 cbor = CBORObject .NewOrderedMap ().Add ("ghi" , 2 ).Add ("abc" , 4 );
63316345 {
63326346 Object objectTemp = CBORObject .NewOrderedMap ().Add (cbor ,
@@ -6343,7 +6357,10 @@ public void TestCalcEncodedSizeCircularRefs3bc() {
63436357 } catch (Exception ex ) {
63446358 Assert .fail (ex .toString ());
63456359 throw new IllegalStateException ("" , ex );
6346- }
6360+ }}
6361+ @ Test (timeout = 10001 )
6362+ public void TestCalcEncodedSizeCircularRefs3bc4 () {
6363+ CBORObject cbor ;
63476364 cbor = CBORObject .NewOrderedMap ().Add ("ghi" , 2 ).Add ("abc" , 4 );
63486365 {
63496366 Object objectTemp = "test" ;
@@ -6359,7 +6376,10 @@ public void TestCalcEncodedSizeCircularRefs3bc() {
63596376 } catch (Exception ex ) {
63606377 Assert .fail (ex .toString ());
63616378 throw new IllegalStateException ("" , ex );
6362- }
6379+ }}
6380+ @ Test (timeout = 10001 )
6381+ public void TestCalcEncodedSizeCircularRefs3bc5 () {
6382+ CBORObject cbor ;
63636383 cbor = CBORObject .NewOrderedMap ().Add ("ghi" , 2 ).Add ("abc" , 4 );
63646384 {
63656385 Object objectTemp = "test" ;
@@ -6375,7 +6395,10 @@ public void TestCalcEncodedSizeCircularRefs3bc() {
63756395 } catch (Exception ex ) {
63766396 Assert .fail (ex .toString ());
63776397 throw new IllegalStateException ("" , ex );
6378- }
6398+ }}
6399+ @ Test (timeout = 10001 )
6400+ public void TestCalcEncodedSizeCircularRefs3bc6 () {
6401+ CBORObject cbor ;
63796402 cbor = CBORObject .NewOrderedMap ().Add ("ghi" , 2 ).Add ("abc" , 4 );
63806403 {
63816404 Object objectTemp = CBORObject .NewOrderedMap ().Add ("mno" , 1 ).Add (cbor ,
@@ -6391,7 +6414,10 @@ public void TestCalcEncodedSizeCircularRefs3bc() {
63916414 } catch (Exception ex ) {
63926415 Assert .fail (ex .toString ());
63936416 throw new IllegalStateException ("" , ex );
6394- }
6417+ }}
6418+ @ Test (timeout = 10001 )
6419+ public void TestCalcEncodedSizeCircularRefs3bc7 () {
6420+ CBORObject cbor ;
63956421 // No circular refs
63966422 cbor = CBORObject .NewOrderedMap ().Add (1 , 2 ).Add (3 , 4 );
63976423 cbor .Add ("test" , CBORObject .NewOrderedMap ());
@@ -6418,6 +6444,10 @@ public void TestCalcEncodedSizeCircularRefs3bc() {
64186444 if (!(cbor .CalcEncodedSize () > 2 )) {
64196445 Assert .fail ();
64206446 }
6447+ }
6448+ @ Test (timeout = 10001 )
6449+ public void TestCalcEncodedSizeCircularRefs3bc8 () {
6450+ CBORObject cbor ;
64216451 cbor = CBORObject .NewOrderedMap ().Add ("ghi" , 2 ).Add ("abc" , 4 );
64226452 {
64236453 Object objectTemp = "test" ;
0 commit comments