()
| 132 | } |
| 133 | |
| 134 | @Test |
| 135 | public void overrideConfig() throws Exception { |
| 136 | final Config config = new Config(); |
| 137 | config.overrideConfig("asynchbase.zk.base_path", "/myhbase"); |
| 138 | assertEquals("/myhbase", config.getString("asynchbase.zk.base_path")); |
| 139 | } |
| 140 | |
| 141 | @Test |
| 142 | public void getString() throws Exception { |
no test coverage detected