All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jparams.junit4.data.converter.BigDecimalConverter Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
package com.jparams.junit4.data.converter;

import com.jparams.junit4.reflection.MethodParameter;

import java.math.BigDecimal;

public class BigDecimalConverter implements Converter {
    @Override
    public Object convert(Object data, MethodParameter methodParameter) {
        return new BigDecimal(data.toString());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy