https://github.com/junit-team/junit-team.github.io
JUnit website
https://github.com/junit-team/junit-team.github.io
Last synced: 9 months ago
JSON representation
JUnit website
- Host: GitHub
- URL: https://github.com/junit-team/junit-team.github.io
- Owner: junit-team
- License: other
- Created: 2016-03-21T19:11:58.000Z (almost 10 years ago)
- Default Branch: main
- Last Pushed: 2025-03-22T08:39:46.000Z (10 months ago)
- Last Synced: 2025-03-22T09:26:44.430Z (10 months ago)
- Language: HTML
- Homepage:
- Size: 91.8 KB
- Stars: 5
- Watchers: 5
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: changes-report.html
- License: license.html
Awesome Lists containing this project
README
# JUnit Website
## Generating redirects to former JUnit 4 pages
```sh
gfind . -regex '.*.html' > ~/Desktop/FILES
while read i ; do mkdir -p "$(dirname "$i")"; done < ~/Desktop/FILES
while read i ; do cat license.html > $i; done < ~/Desktop/FILES
```