com.nhaarman.mockito_kotlin.ArgumentCaptor.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mockito-kotlin Show documentation
Show all versions of mockito-kotlin Show documentation
Using Mockito with Kotlin.
The newest version!
/*
* The MIT License
*
* Copyright (c) 2016 Niek Haarman
* Copyright (c) 2007 Mockito contributors
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package com.nhaarman.mockito_kotlin
import com.nhaarman.mockito_kotlin.createinstance.createInstance
import org.mockito.ArgumentCaptor
import kotlin.reflect.KClass
inline fun argumentCaptor(): KArgumentCaptor = KArgumentCaptor(ArgumentCaptor.forClass(T::class.java), T::class)
inline fun nullableArgumentCaptor(): KArgumentCaptor = KArgumentCaptor(ArgumentCaptor.forClass(T::class.java), T::class)
inline fun capture(captor: ArgumentCaptor): T = captor.capture() ?: createInstance()
class KArgumentCaptor(private val captor: ArgumentCaptor, private val tClass: KClass<*>) {
/**
* The first captured value of the argument.
* @throws IndexOutOfBoundsException if the value is not available.
*/
val firstValue: T
get() = captor.firstValue
/**
* The second captured value of the argument.
* @throws IndexOutOfBoundsException if the value is not available.
*/
val secondValue: T
get() = captor.secondValue
/**
* The third captured value of the argument.
* @throws IndexOutOfBoundsException if the value is not available.
*/
val thirdValue: T
get() = captor.thirdValue
/**
* The last captured value of the argument.
* @throws IndexOutOfBoundsException if the value is not available.
*/
val lastValue: T
get() = captor.lastValue
val allValues: List
get() = captor.allValues
@Suppress("UNCHECKED_CAST")
fun capture(): T = captor.capture() ?: createInstance(tClass) as T
}
val ArgumentCaptor.firstValue: T
get() = allValues[0]
val ArgumentCaptor.secondValue: T
get() = allValues[1]
val ArgumentCaptor.thirdValue: T
get() = allValues[2]
val ArgumentCaptor.lastValue: T
get() = allValues.last()