File tree 2 files changed +25
-0
lines changed
platform-tooling-support-tests/projects/vintage/src/test/java
2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change
1
+
2
+ /*
3
+ * Copyright 2015-2024 the original author or authors.
4
+ *
5
+ * All rights reserved. This program and the accompanying materials are
6
+ * made available under the terms of the Eclipse Public License v2.0 which
7
+ * accompanies this distribution and is available at
8
+ *
9
+ * https://www.eclipse.org/legal/epl-v20.html
10
+ */
11
+ import com .example .vintage .VintageTest ;
12
+
13
+ import org .junit .Ignore ;
14
+
15
+ /**
16
+ * Reproducer for https://github.com/junit-team/junit5/issues/4076
17
+ */
18
+ @ Ignore
19
+ public class DefaultPackageTest extends VintageTest {
20
+ void packagePrivateMethod () {
21
+ }
22
+ }
Original file line number Diff line number Diff line change 15
15
import org .junit .Test ;
16
16
17
17
public class VintageTest {
18
+ void packagePrivateMethod () {
19
+ }
20
+
18
21
@ Test
19
22
public void success () {
20
23
// pass
You can’t perform that action at this time.
0 commit comments