To store, manage, and update JUnit test files that are required for Java questions in the Canvas Gamification website. Ultimately the .java
files contained here are to be pasted into an input field within the website itself in order to be implemented.
Note: Changes made here are not automatically reflected in the Canvas Gamification website
- JDK 15
- Jetbrains IntelliJ (Highly Recommended, but other IDE's are fine)
Cloning the repo should be all that is needed, however if you are using JetBrains IntelliJ then you may need to create an empty project, initialize it as a git repository, and then manually set its remote origin to this repo.
- Create an empty JetBrains IntelliJ Java Project (without Maven, Groovy, or other libraries).
- Open a terminal window within this project's root directory.
- Run
git init
to initialize this project as a git repository. - Run
git remote add origin <REPO_LINK>
whereREPO_LINK
is the link to this git repository. - Run
git branch -M main
to complete this setup.
- With IntelliJ, your UI should update to display the git-based features at the bottom right and top right of the window. Once this happens then you're good to go!