-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added files needed for tests (junit4 + junit5 projects)
- Loading branch information
Showing
11 changed files
with
2,009 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/test/resources/oracle/commits/junit4-02c328028b4d32c15bbf0becc9838e54ecbafcbf.json
Large diffs are not rendered by default.
Oops, something went wrong.
18 changes: 18 additions & 0 deletions
18
...s/junit4-02c328028b4d32c15bbf0becc9838e54ecbafcbf/src/main/java/junit/runner/Version.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package junit.runner; | ||
|
||
/** | ||
* This class defines the current version of JUnit | ||
*/ | ||
public class Version { | ||
private Version() { | ||
// don't instantiate | ||
} | ||
|
||
public static String id() { | ||
return "4.13-SNAPSHOT"; | ||
} | ||
|
||
public static void main(String[] args) { | ||
System.out.println(id()); | ||
} | ||
} |
Oops, something went wrong.