Skip to content

Commit

Permalink
Add reproducer for #4076
Browse files Browse the repository at this point in the history
  • Loading branch information
marcphilipp committed Oct 17, 2024
1 parent 91924ec commit 380cb88
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

/*
* Copyright 2015-2024 the original author or authors.
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License v2.0 which
* accompanies this distribution and is available at
*
* https://www.eclipse.org/legal/epl-v20.html
*/
import com.example.vintage.VintageTest;

import org.junit.Ignore;

/**
* Reproducer for https://github.com/junit-team/junit5/issues/4076
*/
@Ignore
public class DefaultPackageTest extends VintageTest {
void packagePrivateMethod() {
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
import org.junit.Test;

public class VintageTest {
void packagePrivateMethod() {
}

@Test
public void success() {
// pass
Expand Down

0 comments on commit 380cb88

Please sign in to comment.