LinkedList Package and Unit Tests#2
Open
AlAskalany wants to merge 9 commits intosoftware-dev-academy:masterfrom
Open
LinkedList Package and Unit Tests#2AlAskalany wants to merge 9 commits intosoftware-dev-academy:masterfrom
AlAskalany wants to merge 9 commits intosoftware-dev-academy:masterfrom
Conversation
AlAskalany
commented
Oct 15, 2018
- Moved Node class outside of the LinkedList class
- Moved both Node and LinkedList classes to a new packed "excercises.linkedlist"
- Added add and get methods with a Node object parameter to the LinkedList class
- Added JUnit 5 tests for both the Node and the LinkedList classes
Created a .gitignore file using the .gitignore plugin in IntelliJ IDEA, ignoring most common IDE and OS related files.
Moved Node class outside the LinkedList.java file to a new Node.java file, and moved both files to a new package called "linkedlist".
Added an add method to the LinkedList class allowing adding a Node class instance to it, besides the existing add by value one which is now named addValue(int i).
Added a get method to the LinkedList class allowing getting a Node class instance from it, besides the existing get by value one which is now named getValue(int i).
Added getters and setters for fields in Node.java and changed usage in the LinkedList class to match these changes.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.