Skip to content

Commit

Permalink
Clean up remaining chores
Browse files Browse the repository at this point in the history
  • Loading branch information
JooHyukKim committed Jan 12, 2025
1 parent af14e3f commit 8eebc58
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
import com.fasterxml.jackson.dataformat.protobuf.schema.ProtobufSchema;
import com.fasterxml.jackson.dataformat.protobuf.schema.ProtobufSchemaLoader;

/**
* Created by miz on 8/10/16.
*/
public class SerDeserLongTest {
@Test
public void testWeirdLongSerDeser() throws IOException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@

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

/**
* Unit tests for generation that trigger exceptions (or would
* without suppression).
*/
public class WriteErrorsTest extends ProtobufTestBase
{
static class Point3D extends Point {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@

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

/**
* Custom {@link InvocationInterceptor} that intercepts test method invocation.
* To pass the test ***only if*** test fails with an exception, and fail the test otherwise.
*
* @since 2.19
*/
public class JacksonTestFailureExpectedInterceptor
implements InvocationInterceptor
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
*
* @since 2.19
*/

public class JacksonTestShouldFailException
extends RuntimeException
{
Expand Down

0 comments on commit 8eebc58

Please sign in to comment.