Adds allValues accessor to KotlinArgumentCaptor

Test: Tested locally
BUG: 241286279
Change-Id: Iec3a65064cd2c331048e68477980f2c68fd5d64d
This commit is contained in:
Govinda Wasserman
2022-08-16 15:30:51 -04:00
parent fe7a283daf
commit 461c9d5ca7

View File

@@ -91,6 +91,8 @@ class KotlinArgumentCaptor<T> constructor(clazz: Class<T>) {
fun capture(): T = wrapped.capture()
val value: T
get() = wrapped.value
val allValues: List<T>
get() = wrapped.allValues
}
/**