2019-11-19 20:42:32 +03:00
|
|
|
# AtomicKotlinCourse
|
|
|
|
|
|
|
|
To use in developer mode:
|
|
|
|
|
|
|
|
After cloning, open as a project in Intellij IDEA with the EDU extension installed.
|
|
|
|
|
|
|
|
When you make changes, you might need to rerun Gradle to build the project:
|
|
|
|
|
|
|
|
```
|
|
|
|
gradlew build -x test
|
|
|
|
```
|
2020-09-29 16:30:57 +03:00
|
|
|
|
|
|
|
- To check output and 'eq' for examples and exercise solutions, run
|
|
|
|
`gradlew TestExamples`.
|
|
|
|
|
|
|
|
- To runs the provided tests for exercises against the given solutions, run
|
|
|
|
`gradlew TestExercises`.
|