Jmockit How to match 'any' parameter type for Class<T> clazz

276 Views Asked by At

Using jmockit, i am creating new expectation

    new Expectations(){{
        ConfigurationService.get(anyString,****);
    }};

of static method

public static <T> T get(String key, Class<T> clazz) {

How to match 'any' parameter type for Class clazz ?

0

There are 0 best solutions below