Someone said Concatenate doesnt work, so here's a testcase to prove that it works
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/branches/REL_2_BRANCH@353392 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
fd2cc4b7d1
commit
db23532059
@ -305,6 +305,15 @@ public class TestFormulaParser extends TestCase {
|
|||||||
assertTrue("second ptg is string",ptg[1] instanceof StringPtg);
|
assertTrue("second ptg is string",ptg[1] instanceof StringPtg);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void testConcatenate(){
|
||||||
|
FormulaParser fp = new FormulaParser("CONCATENATE(\"first\",\"second\")",null);
|
||||||
|
fp.parse();
|
||||||
|
Ptg[] ptg = fp.getRPNPtg();
|
||||||
|
assertTrue("first ptg is string",ptg[0] instanceof StringPtg);
|
||||||
|
assertTrue("second ptg is string",ptg[1] instanceof StringPtg);
|
||||||
|
}
|
||||||
|
|
||||||
public static void main(String [] args) {
|
public static void main(String [] args) {
|
||||||
System.out.println("Testing org.apache.poi.hssf.record.formula.FormulaParser");
|
System.out.println("Testing org.apache.poi.hssf.record.formula.FormulaParser");
|
||||||
junit.textui.TestRunner.run(TestFormulaParser.class);
|
junit.textui.TestRunner.run(TestFormulaParser.class);
|
||||||
|
Loading…
Reference in New Issue
Block a user