https://github.com/simonberner/kotlin-firststeps
First baby steps with Kotlin
https://github.com/simonberner/kotlin-firststeps
Last synced: 7 months ago
JSON representation
First baby steps with Kotlin
- Host: GitHub
- URL: https://github.com/simonberner/kotlin-firststeps
- Owner: simonberner
- Created: 2019-09-10T10:12:58.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-09-23T20:27:09.000Z (almost 7 years ago)
- Last Synced: 2024-12-29T01:58:48.515Z (over 1 year ago)
- Language: Kotlin
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# First steps with Kotlin
This project contains several small baby step examples with different Kotlin frameworks.
## Hello world
A simple hello world example.
## Rock-Paper-Scissors Kata
A coding kata to implement a small Rock Paper Scissors game in Kotlin.
#### Game rules
Just in case you forgot the rules, here they are:
1. Either player decides between rock, paper or scissors.
2. At the same time, both reveal their decision.
3. Rock beats scissors, scissors beat paper, paper beats rock.
## REST-assured in Kotlin
A simple example of an API Test implemented with [REST-assured for Kotlin](https://github.com/rest-assured/rest-assured/wiki/Usage#kotlin).
Inspired by [this](http://code.haleby.se/2019/09/06/rest-assured-in-kotlin/) blog post.
## Asynchronous Testing with Awaitility in Kotlin
Some small examples of how one can use the DSL [Awaitility](https://github.com/awaitility/awaitility) in Kotlin.