Package com.comcast.cns.model

Examples of com.comcast.cns.model.CNSSubscriptionDeliveryPolicy.toJSON()


  
   @Test
   public void testToStringToJSON() {
     try {
       CNSSubscriptionDeliveryPolicy subpolicy = new CNSSubscriptionDeliveryPolicy();
       JSONObject subpolicyJSON = subpolicy.toJSON();
       logger.info(subpolicy.toString());
       assertTrue(subpolicyJSON.has("healthyRetryPolicy"));
       JSONObject respJSON = subpolicyJSON.getJSONObject("healthyRetryPolicy");
      assertTrue(respJSON.has("backoffFunction"));
      assertTrue(respJSON.getString("backoffFunction").equals("linear"));
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.