Package com.googlecode.aviator.runtime.function.math

Source Code of com.googlecode.aviator.runtime.function.math.MathLog10FunctionUnitTest

package com.googlecode.aviator.runtime.function.math;

import static org.junit.Assert.*;

import java.util.HashMap;
import java.util.Map;

import org.junit.Before;
import org.junit.Test;

import com.googlecode.aviator.runtime.type.AviatorJavaType;
import com.googlecode.aviator.runtime.type.AviatorNumber;

public class MathLog10FunctionUnitTest extends BaseMathFunctionUnitTestForOneArgument {
    @Before
    public void setUp() {
        this.function = new MathLog10Function();
    }


    @Test
    public void testCall() {
        assertEquals(2.0, this.function.call(null, AviatorNumber.valueOf(100)).getValue(null));
        assertEquals(3.0  , this.function.call(null, AviatorNumber.valueOf(1000)).getValue(null));
        assertEquals(2.60, this.function.call(null, AviatorNumber.valueOf(400)).getValue(null));

        Map<String, Object> env = new HashMap<String, Object>();
        env.put("a", 10000);
        env.put("b", 9.0);

        assertEquals(4.0, this.function.call(env, new AviatorJavaType("a")).getValue(null));
        assertEquals(0.9542, this.function.call(env, new AviatorJavaType("b")).getValue(null));
    }

}
TOP

Related Classes of com.googlecode.aviator.runtime.function.math.MathLog10FunctionUnitTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.