A kata is an exercise in martial arts. A code kata is an exercise in programming which helps hone your skills through practice and repetition. The Eclipse Collections Kata is a fun way to help you learn idiomatic Eclipse Collections usage. This particular kata is set up as a series of unit tests which fail. Your task is to make them pass, using Eclipse Collections.
Clone this repo or simply download and extract the master zip file, then follow the instructions below for your IDE/platform.
Initialize Eclipse project with the command below.
./gradlew eclipse
gradlew.bat eclipse
Once the project is initialized, you can import the project from "Import" => "General" => "Existing Projects into Workspace". Select "eclipse-collections-kata" directory as root directory, make sure to choose "Search for nested projects" option and finish.
Initialize IntelliJ IDEA project with the command below.
./gradlew idea
gradlew.bat idea
Once the project is initialized, you can open the project from "File" => "Open..." => choose "eclipse-collections-kata" folder. You might see a dialog to suggest importing Gradle project, it's up to you to do so if you'd like to invoke gradle builds from IDEA. Kata can run in IDEA even if you don't import Gradle project.
We haven't come up with an instruction for NetBeans yet. We welcome contributions from NetBeans users to add guidance here!
There are two separate katas under different directories (Company Kata and Pet Kata).
company-kata/src/tests
pet-kata/src/tests
To get started, you can refer to slides for the Instruction and Pet Kata to learn how to set-up Kata, basic features of Eclipse Collections corresponding to each Pet Kata exercise and then solutions.
To learn wider range of functionalities, slides for Company Kata is available in pdf format.
Check out the solution branch for your reference.
Enjoy happy learning with Eclipse Collections Kata!
The Eclipse Collections Reference Guide is a great way to get an overview of the extensive features available in the framework.