Home
last modified time | relevance | path

Searched refs:assertInvalidSlice (Results 1 – 1 of 1) sorted by relevance

/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
DDecodeUtf8Test.java172 assertInvalidSlice(bytes, bytes.length - 3, 4); in testInvalidBufferSlice()
173 assertInvalidSlice(bytes, bytes.length, 1); in testInvalidBufferSlice()
174 assertInvalidSlice(bytes, bytes.length + 1, 0); in testInvalidBufferSlice()
175 assertInvalidSlice(bytes, 0, bytes.length + 1); in testInvalidBufferSlice()
233 private void assertInvalidSlice(byte[] bytes, int index, int size) throws Exception { in assertInvalidSlice() method in DecodeUtf8Test