26 lines
682 B
Java
26 lines
682 B
Java
package jscl.math.function;
|
|
|
|
import org.junit.Test;
|
|
|
|
/**
|
|
* User: serso
|
|
* Date: 10/29/11
|
|
* Time: 5:20 PM
|
|
*/
|
|
public class FunctionTest {
|
|
|
|
@Test
|
|
public void testSubstituteParameter() throws Exception {
|
|
/* Ln ln = new Ln(null);
|
|
Assert.assertEquals("ln(x)", ln.toString());
|
|
Root eq = new Root(null, null);
|
|
Assert.assertEquals("eq(x, y)", eq.toString());
|
|
Generic[] parameter = new Generic[40];
|
|
for(int i = 0; i < 40; i++) {
|
|
parameter[i] = null;
|
|
}
|
|
eq.setParameters(parameter);
|
|
Assert.assertEquals("root(x, y, z, a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z, a, b, c, d, e, f, g, h, i, j, k)", eq.toString());*/
|
|
}
|
|
}
|