-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[WIP] add basic load test for Apache HTTP client, without information…
…al report
- Loading branch information
1 parent
dbb3c2d
commit 11ec249
Showing
20 changed files
with
898 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
...mMain/kotlin/com/sunnychung/application/multiplatform/hellohttp/extension/MapExtension.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package com.sunnychung.application.multiplatform.hellohttp.extension | ||
|
||
import java.util.SortedMap | ||
|
||
fun <K, V> SortedMap<K, V>.lastOrNull(): V? = | ||
if (isEmpty()) { | ||
null | ||
} else { | ||
get(lastKey()) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.