Skip to content

Commit 8eebc58

Browse files
committed
Clean up remaining chores
1 parent af14e3f commit 8eebc58

File tree

4 files changed

+13
-1
lines changed

4 files changed

+13
-1
lines changed

protobuf/src/test/java/com/fasterxml/jackson/dataformat/protobuf/SerDeserLongTest.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
import com.fasterxml.jackson.dataformat.protobuf.schema.ProtobufSchema;
99
import com.fasterxml.jackson.dataformat.protobuf.schema.ProtobufSchemaLoader;
1010

11+
/**
12+
* Created by miz on 8/10/16.
13+
*/
1114
public class SerDeserLongTest {
1215
@Test
1316
public void testWeirdLongSerDeser() throws IOException {

protobuf/src/test/java/com/fasterxml/jackson/dataformat/protobuf/WriteErrorsTest.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@
1313

1414
import static org.junit.jupiter.api.Assertions.assertEquals;
1515

16+
/**
17+
* Unit tests for generation that trigger exceptions (or would
18+
* without suppression).
19+
*/
1620
public class WriteErrorsTest extends ProtobufTestBase
1721
{
1822
static class Point3D extends Point {

protobuf/src/test/java/com/fasterxml/jackson/dataformat/protobuf/testutil/failure/JacksonTestFailureExpectedInterceptor.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44

55
import org.junit.jupiter.api.extension.*;
66

7+
/**
8+
* Custom {@link InvocationInterceptor} that intercepts test method invocation.
9+
* To pass the test ***only if*** test fails with an exception, and fail the test otherwise.
10+
*
11+
* @since 2.19
12+
*/
713
public class JacksonTestFailureExpectedInterceptor
814
implements InvocationInterceptor
915
{

protobuf/src/test/java/com/fasterxml/jackson/dataformat/protobuf/testutil/failure/JacksonTestShouldFailException.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
*
88
* @since 2.19
99
*/
10-
1110
public class JacksonTestShouldFailException
1211
extends RuntimeException
1312
{

0 commit comments

Comments
 (0)