I have an existing map that holds simple integer values. I'd like to update that existing map by the value of a given map that holds one of the possible keys.
val originMap = mutableMapOf("Foo" to 10, "Bar" to 5)
val additionalMap = mapOf("Foo" to 4)
// questioned logic
assertThat(originMap).containsEntry("Foo", 14)