Skip to content

Commit

Permalink
Merge pull request Kotlin#86 from nvlled/patch-1
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
svtk authored Jul 7, 2017
2 parents 2eb00cd + dfcd425 commit 4fc1640
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,24 @@ Each exercise is created as a failing unit test and your job is to make it pass.

#### How to build and run tests

Working with the project using Intellij IDEA or Android Studio:
##### Working with the project using Intellij IDEA or Android Studio:

1. Import the project as Gradle project.
2. To build the project and run tests use 'test' task on Gradle panel.

You can also build the project and run all tests in terminal:
##### Working with the commandline
You can also build the project and run all tests in the terminal:
```
./gradlew test
```
But since running all the tests tend to take longer and the output can be
cluttered, it's more ideal to run selected tests only:
```
$ ./gradlew test --tests i_* # run tests in part 1
$ ./gradlew test --tests ii_* # run tests in part 2
$ ./gradlew test --tests ii_*22* # run test number 22 in part 2
```

Here https://www.jetbrains.com/help/idea/gradle.html you can read how to work with Gradle projects in IntelliJ IDEA.

#### How to work with Koans using this project
Expand Down

0 comments on commit 4fc1640

Please sign in to comment.