Add Function3
...and rename ExceptionUtils to FunctionalUtils as the old name would no longer be appropriate. Test: FrameworksNetTests Change-Id: I2affd69fb84d7f250b4a45497eec6c052bf6ec50
This commit is contained in:
@@ -20,8 +20,8 @@ package com.android.testutils
|
||||
|
||||
import androidx.test.platform.app.InstrumentationRegistry
|
||||
import com.android.modules.utils.build.SdkLevel
|
||||
import com.android.testutils.ExceptionUtils.ThrowingRunnable
|
||||
import com.android.testutils.ExceptionUtils.ThrowingSupplier
|
||||
import com.android.testutils.FunctionalUtils.ThrowingRunnable
|
||||
import com.android.testutils.FunctionalUtils.ThrowingSupplier
|
||||
|
||||
/**
|
||||
* Run the specified [task] with the specified [permissions] obtained through shell
|
||||
|
||||
@@ -18,8 +18,8 @@
|
||||
|
||||
package com.android.testutils
|
||||
|
||||
import com.android.testutils.ExceptionUtils.ThrowingRunnable
|
||||
import com.android.testutils.ExceptionUtils.ThrowingSupplier
|
||||
import com.android.testutils.FunctionalUtils.ThrowingRunnable
|
||||
import com.android.testutils.FunctionalUtils.ThrowingSupplier
|
||||
import javax.annotation.CheckReturnValue
|
||||
|
||||
/**
|
||||
|
||||
@@ -21,7 +21,7 @@ import java.util.function.Supplier;
|
||||
/**
|
||||
* A class grouping some utilities to deal with exceptions.
|
||||
*/
|
||||
public class ExceptionUtils {
|
||||
public class FunctionalUtils {
|
||||
/**
|
||||
* Like a Consumer, but declared to throw an exception.
|
||||
* @param <T>
|
||||
@@ -79,4 +79,21 @@ public class ExceptionUtils {
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
// Java has Function<T, R> and BiFunction<T, U, V> but nothing for higher-arity functions.
|
||||
// Function3 is what Kotlin and Scala use (they also have higher-arity variants, with
|
||||
// FunctionN taking N arguments, as the JVM does not have variadic formal parameters)
|
||||
/**
|
||||
* A function with three arguments.
|
||||
* @param <TArg1> Type of the first argument
|
||||
* @param <TArg2> Type of the second argument
|
||||
* @param <TArg3> Type of the third argument
|
||||
* @param <TResult> Type of the return value
|
||||
*/
|
||||
public interface Function3<TArg1, TArg2, TArg3, TResult> {
|
||||
/**
|
||||
* Apply the function to the arguments
|
||||
*/
|
||||
TResult apply(TArg1 a1, TArg2 a2, TArg3 a3);
|
||||
}
|
||||
}
|
||||
@@ -18,7 +18,7 @@
|
||||
|
||||
package com.android.testutils
|
||||
|
||||
import com.android.testutils.ExceptionUtils.ThrowingRunnable
|
||||
import com.android.testutils.FunctionalUtils.ThrowingRunnable
|
||||
import java.lang.reflect.Modifier
|
||||
import kotlin.system.measureTimeMillis
|
||||
import kotlin.test.assertEquals
|
||||
|
||||
Reference in New Issue
Block a user