try {
JSONObject json = new JSONObject(jsonStr);
CNSThrottlePolicy tp = new CNSThrottlePolicy();
assertTrue(tp.getMaxReceivesPerSecond() == null);
//TODO test;
tp.update(json);
assertTrue(tp.getMaxReceivesPerSecond() == 5);
json = new JSONObject(jsonStr2);
tp.update(json);
assertTrue(tp.getMaxReceivesPerSecond() == null);