- Add the Codota plugin to your IDE and get smart completions
private void myMethod () {BufferedReader b =
InputStream in;new BufferedReader(new InputStreamReader(in))
Reader in;new BufferedReader(in)
File file;new BufferedReader(new FileReader(file))
- Smart code suggestions by Codota
}
/** * @param berValue to decode. * @param expected dir sync control to test. * * @throws Exception On test failure. */ @Test(groups = {"control"}, dataProvider = "request-response") public void decode(final byte[] berValue, final DirSyncControl expected) throws Exception { final DirSyncControl actual = new DirSyncControl(expected.getCriticality()); actual.decode(berValue); Assert.assertEquals(actual, expected); } }