Hayden
Hayden
I would like to make a feature that allows the user to stop running the script. It would be nice if it was available through a keyboard shortcut as well.
Making sure every possible keyboard combination supported by Ducky is supported by the emultor.
This adds some transformers allowing you to utilize `Collection` asserts on parts of a map. Example for keys: ```kotlin assertThat(mapOf("key" to "value")).havingKeys().containsOnly("key") ``` Example for values: ```kotlin assertThat(mapOf("key" to "value")).havingValues().containsOnly("value")...