Skip to content

Commit

Permalink
Merge fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JuditKnoll committed Oct 12, 2023
1 parent 799ad5e commit 2ee239b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import static org.hamcrest.Matchers.hasItem;
import static org.hamcrest.MatcherAssert.assertThat;

import org.junit.Test;
import org.junit.jupiter.api.Test;

import edu.umd.cs.findbugs.AbstractIntegrationTest;
import edu.umd.cs.findbugs.annotations.Confidence;
Expand All @@ -12,9 +12,9 @@

import static edu.umd.cs.findbugs.test.CountMatcher.containsExactly;

public class RuntimeExceptionCapture2Test extends AbstractIntegrationTest {
class RuntimeExceptionCapture2Test extends AbstractIntegrationTest {
@Test
public void test() {
void test() {
performAnalysis("REC2Test.class",
"REC2Test$Resource.class",
"REC2Test$TestPass5.class",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import static org.hamcrest.Matchers.hasItem;
import static org.hamcrest.MatcherAssert.assertThat;

import org.junit.Test;
import org.junit.jupiter.api.Test;

import edu.umd.cs.findbugs.AbstractIntegrationTest;
import edu.umd.cs.findbugs.annotations.Confidence;
Expand All @@ -12,9 +12,9 @@

import static edu.umd.cs.findbugs.test.CountMatcher.containsExactly;

public class RuntimeExceptionCaptureTest extends AbstractIntegrationTest {
class RuntimeExceptionCaptureTest extends AbstractIntegrationTest {
@Test
public void test() {
void test() {
performAnalysis("RECTest.class");

fail("testFail", 46, Confidence.MEDIUM);
Expand Down

0 comments on commit 2ee239b

Please sign in to comment.