9683e5be18
* More unit tests for statistical functions, including a bugfix to LARGE() that was identified in testing
29 lines
337 B
PHP
29 lines
337 B
PHP
<?php
|
|
|
|
return [
|
|
[
|
|
2,
|
|
10, 7, 9, 27, 2,
|
|
],
|
|
[
|
|
-7,
|
|
10, '-9', -7, '17', 2,
|
|
],
|
|
[
|
|
0,
|
|
10, 7, 9, '17', 2,
|
|
],
|
|
[
|
|
1,
|
|
10, true, 9, 2,
|
|
],
|
|
[
|
|
0,
|
|
null, true, 2, false,
|
|
],
|
|
[
|
|
0,
|
|
null, 'STRING', '', 'xl95',
|
|
],
|
|
];
|