Author: fanningpj
Date: Mon Feb 21 13:31:07 2022
New Revision: 1898275

URL: http://svn.apache.org/viewvc?rev=1898275&view=rev
Log:
add tests

Modified:
    
poi/trunk/poi/src/test/java/org/apache/poi/ss/formula/functions/TestIndirect.java

Modified: 
poi/trunk/poi/src/test/java/org/apache/poi/ss/formula/functions/TestIndirect.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/poi/src/test/java/org/apache/poi/ss/formula/functions/TestIndirect.java?rev=1898275&r1=1898274&r2=1898275&view=diff
==============================================================================
--- 
poi/trunk/poi/src/test/java/org/apache/poi/ss/formula/functions/TestIndirect.java
 (original)
+++ 
poi/trunk/poi/src/test/java/org/apache/poi/ss/formula/functions/TestIndirect.java
 Mon Feb 21 13:31:07 2022
@@ -107,10 +107,12 @@ final class TestIndirect {
 
         // non-error cases
         confirm(feA, c, "INDIRECT(\"C2\")", 23);
+        confirm(feA, c, "INDIRECT(\"c2\")", 23);
         confirm(feA, c, "INDIRECT(\"C2\", TRUE)", 23);
         confirm(feA, c, "INDIRECT(\"$C2\")", 23);
         confirm(feA, c, "INDIRECT(\"C$2\")", 23);
         confirm(feA, c, "SUM(INDIRECT(\"Sheet2!B1:C3\"))", 351); // area ref
+        confirm(feA, c, "SUM(INDIRECT(\"Sheet2!b1:c3\"))", 351); // area ref
         confirm(feA, c, "SUM(INDIRECT(\"Sheet2! B1 : C3 \"))", 351); // spaces 
in area ref
         confirm(feA, c, "SUM(INDIRECT(\"'John''s sales'!A1:C1\"))", 93); // 
special chars in sheet name
         confirm(feA, c, "INDIRECT(\"'Sheet1'!B3\")", 32); // redundant sheet 
name quotes



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to