Skip to content

Commit 2acb3fe

Browse files
author
MarkBaker
committed
Update branch and some additional unit tests
1 parent 8f8257d commit 2acb3fe

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

tests/PhpSpreadsheetTests/Calculation/ArrayFormulaTest.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,24 @@ public function providerArrayFormulae(): array
7171
'=IFS(FALSE, {1,2,3}, TRUE, {4,5,6})',
7272
[[4, 5, 6]],
7373
],
74+
[
75+
'=UNIQUE(
76+
{"Grant";"Barbara";"Frances";"Alicia";"Alicia";"Lynn";"Barbara";"Anthony";"Anthony";"Frances"}
77+
&" "&
78+
{"Fife";"Pruitt";"Horn";"Barrett";"Barrett";"Larson";"Pruitt";"Snook";"Snook";"Horn"}
79+
)',
80+
[['Grant Fife'], ['Barbara Pruitt'], ['Frances Horn'], ['Alicia Barrett'], ['Lynn Larson'], ['Anthony Snook']],
81+
],
82+
[
83+
'=UNIQUE(
84+
{"Grant";"Barbara";"Frances";"Alicia";"Alicia";"Lynn";"Barbara";"Anthony";"Anthony";"Frances"}
85+
&" "&
86+
{"Fife";"Pruitt";"Horn";"Barrett";"Barrett";"Larson";"Pruitt";"Snook";"Snook";"Horn"},
87+
false,
88+
true
89+
)',
90+
[['Grant Fife'], ['Lynn Larson']],
91+
],
7492
];
7593
}
7694

0 commit comments

Comments
 (0)