Skip to content

Commit

Permalink
Merge branch '2.19' into joohyukkim/2.19/523-properties-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JooHyukKim committed Jan 12, 2025
2 parents a9e9bc1 + baf42c3 commit 5ce7f49
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
package com.fasterxml.jackson.dataformat.javaprop.testutil.failure;

import java.lang.annotation.*;

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

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
* <p>
* Annotation used to indicate that a JUnit-5 based tests method is expected to fail.
Expand All @@ -21,8 +24,7 @@
*
* &#64;Test
* &#64;JacksonTestFailureExpected
* @Test
public void testFeatureNotYetImplemented() {
* public void testFeatureNotYetImplemented() {
* // Test code that is expected to fail
* }
* }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
package com.fasterxml.jackson.dataformat.javaprop.testutil.failure;

import java.lang.reflect.Method;
import org.junit.jupiter.api.extension.ExtensionContext;
import org.junit.jupiter.api.extension.InvocationInterceptor;
import org.junit.jupiter.api.extension.ReflectiveInvocationContext;

import org.junit.jupiter.api.extension.*;
import java.lang.reflect.Method;

/**
* Custom {@link InvocationInterceptor} that intercepts test method invocation.
Expand Down

0 comments on commit 5ce7f49

Please sign in to comment.