This is a very simple JAVA 8 program for parsing .csv files (a book catalogue in this case) and displaying the information without any user interaction.
After parsing the files, you are able to:
- Get all publications
- Find a book/magazine by ISBN
- Get all publications for an Author (given his email)
- Get all publications sorted by title.
- Java 8
- Gradle - Build tool used in combination with Intellij IDE
- Apache Commons CSV - The csv parser used
- JUnit - The testing framework used
- Mockito - The mocking framework used for the junit testing
- Eduardo Exposito