CS 272 Software Development

CS 272-01, CS 272-02 • Fall 2021

Setup Homework

This guide will walk you through the process of setting up your homework repository and importing it into Eclipse.

Before you begin, you need to make sure to go through the other setup guides first:

If you do not yet have a Github account, sign up for a free account. I recommend choosing a professional username and signing up for the Student Developer Pack when you get a chance.

For every homework assignment, you will need to repeat these steps:

  1. Setup your Github repository.

    1. Find the homework assignment on Canvas. For example, go to the ArgumentMap assignment on Canvas for the first homework of the semester.

    2. Click the Github Classroom invitation link and follow the instructions.

    3. If this is your first time using Github Classroom, you will be prompted to select your USF username from the list. This makes sure we can associate your Github username with your grades in Canvas. You only need to complete this step once.

    This process will create a private Github repository with the homework starter code that only you, the teacher assistants, and the instructor can access.

  2. Setup your Eclipse project.

    Once your repository is setup, you must import the homework as a Java Maven Project in Eclipse. See the Importing Eclipse Projects from Github guide for detailed steps.

    When done, the “Package Explorer” view of your homework should look something like this:

    Screenshot

    Make sure the correct Java version is showing up and that you are in the “Java” perspective before moving on. This perspective allows you to run Java code. The “Git” perspective lets you view, but not run, Java code.

  3. Verify you can run the JUnit tests on Eclipse locally.

    The tests will be in the src » test » java subfolder. Right-click the test file and select “Run As” » “JUnit Test” from the menu.

    That should open up the “JUnit” view automatically, which will look similar to this:

    Screenshot

    These are the tests you will need to pass for the homework. Most of the tests will fail the first time.

  4. Commit and push changes to Github.

    In Eclipse, make a minor change and commit and push that change to Github.

    I recommend placing the Git Staging View somewhere on your Eclipse layout to make this process more convenient. You can access that view via the “Window” » “Show View” » “Other…” option in the menu. Open the “Git” folder to find the “Git Staging View” option to add it to your layout:

    Screenshot

    Make sure to drag files from the “Unstaged” to the “Staged” box and add a commit message. Sometimes, you need to click the “Refresh” button in the upper right corner of the view to update. For example:

    Screenshot

    Click “Commit and Push” to make a checkpoint and push that checkpoint to Github. If you click “Commit” you only make a local checkpoint on your system.

  5. Verify the Autograder Github Action ran properly.

    Visit your repository on Github. Click the “Actions” tab to view all of the runs. There should be a run with the same name as your last commit.

    Make sure the action finishes running. Here is an example of what a completed action looks like:

    Screenshot
    https://github.com/usf-cs272-fall2021/homework-ArgumentMap-template/actions/runs/1168472802

    Scroll down in the “Summary” view to see the “Annotations” section. That will report the number of points your homework has earned so far:

    Screenshot

    For details on which tests failed, you need to drill into the “Autograding” output.

    Screenshot
    https://github.com/usf-cs272-fall2021/homework-ArgumentMap-template/runs/3427517659?check_suite_focus=true#step:5:132

    You can also see the number of points on the README.md file as well:

    Screenshot

    You may need to refresh your view on Github to see the latest result.

At this point, you should be able to start completing and testing the homework.