Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.test;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.List;
/**
* Hack to support both junit4 and junit5
*
* @author bjorncs
*/
public class JunitCompat {
private JunitCompat() {}
public static void assertEquals(T l, T r) {
List> argTypes = List.of(Object.class, Object.class);
List