jdk/test/java/util/concurrent/tck/ConcurrentSkipListSubMapTest.java
changeset 46146 b3e220a04d3f
parent 35394 282c3cb6a0c1
equal deleted inserted replaced
46145:1a5028372b29 46146:b3e220a04d3f
   623             shouldThrow();
   623             shouldThrow();
   624         } catch (NullPointerException success) {}
   624         } catch (NullPointerException success) {}
   625     }
   625     }
   626 
   626 
   627     /**
   627     /**
   628      * A deserialized map equals original
   628      * A deserialized/reserialized map equals original
   629      */
   629      */
   630     public void testSerialization() throws Exception {
   630     public void testSerialization() throws Exception {
   631         NavigableMap x = map5();
   631         NavigableMap x = map5();
   632         NavigableMap y = serialClone(x);
   632         NavigableMap y = serialClone(x);
   633 
   633 
  1297             shouldThrow();
  1297             shouldThrow();
  1298         } catch (NullPointerException success) {}
  1298         } catch (NullPointerException success) {}
  1299     }
  1299     }
  1300 
  1300 
  1301     /**
  1301     /**
  1302      * A deserialized map equals original
  1302      * A deserialized/reserialized map equals original
  1303      */
  1303      */
  1304     public void testDescendingSerialization() throws Exception {
  1304     public void testDescendingSerialization() throws Exception {
  1305         NavigableMap x = dmap5();
  1305         NavigableMap x = dmap5();
  1306         NavigableMap y = serialClone(x);
  1306         NavigableMap y = serialClone(x);
  1307 
  1307