Open the a7 project in IntelliJ, and modify the file in src/main/java/assignment/Assignment7.java (and any other files in that folder, according to the instructions) so it complies with the instructions.
Use ./gradlew test and the files in src/test/features to guide your testing, making sure you eventually pass all unit tests.
Remember you can submit several times with no grade penalty
Assignments are submitted by pull-request.
Unless otherwise noticed, assignments are due Sunday before midnight (11:59pm) with grace period until Tuesday before class (6:30 pm).
Open git-bash (or your terminal), and then
cd ~Documents/projects/cs5000
git checkout master
git pull
git checkout -b a7
You may already be in this branch; if this branch already exists but you are on a different one, you may need to do git checkout a7
cd ~/Documents/projects/cs5000/a7 (or simply cd a7 if you're already in cs5000)
./gradlew idea
src/main/java/assignment/Assignment7.java
./gradlew test
If you dont get all the points, then you may want to modify until it does
type
git add a7/src/main/java/assignment
to add the file (you can also do git status to check nothing else needs to be added)
git commit -m "some comment"
You can use the comment to specify what you did, especially if you did not finish
git push origin a7
Either on GitLab, or by following the link in the message git prints.