Merge "Adds allValues accessor to KotlinArgumentCaptor" into tm-qpr-dev

This commit is contained in:
Govinda Wasserman
2022-08-19 17:42:10 +00:00
committed by Android (Google) Code Review

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
}
/**