aaf996a165
* Merge branch 'master' of C:\Projects\PHPOffice\PHPSpreadsheet\develop with conflicts. * Bessels, and set some date tests to defined/named arguments * Fix test class naming * Names arguments for math/trig tests * Docblock updates * More engineering function unit test refactorings * More engineering function unit test refactorings. This time, moving on to the Complex engineering functions * Fix ImConjugate test * Fix parseComplex test * Fix parseComplex test * More of the complex number function unit tests refactored * Finish refactoring of the complex number function unit tests * Newer phpunit assertions * Add parsecomplex unit test back until we're ready to drop the deprecated function; but as it doesn't use the specified data provider at all, drop reference to that
65 lines
762 B
PHP
65 lines
762 B
PHP
<?php
|
|
|
|
return [
|
|
[
|
|
52,
|
|
'21-Dec-2000', 1,
|
|
],
|
|
[
|
|
1,
|
|
'2000-01-01', 1,
|
|
],
|
|
[
|
|
2,
|
|
'2000-01-02', 1,
|
|
],
|
|
[
|
|
1,
|
|
'2000-01-01', 2,
|
|
],
|
|
[
|
|
2,
|
|
'2000-01-03', 2,
|
|
],
|
|
[
|
|
1,
|
|
'1995-01-01', 1,
|
|
],
|
|
[
|
|
1,
|
|
'1995-01-07', 1,
|
|
],
|
|
[
|
|
2,
|
|
'1995-01-08', 1,
|
|
],
|
|
[
|
|
1,
|
|
'1995-01-01', 2,
|
|
],
|
|
[
|
|
2,
|
|
'1995-01-02', 2,
|
|
],
|
|
[
|
|
28,
|
|
'3/7/1977',
|
|
],
|
|
[
|
|
'#VALUE!',
|
|
'3/7/1977', 'A',
|
|
],
|
|
[
|
|
'#NUM!',
|
|
'3/7/1977', 0,
|
|
],
|
|
[
|
|
'#VALUE!',
|
|
'Invalid', 1,
|
|
],
|
|
[
|
|
'#NUM!',
|
|
-1,
|
|
],
|
|
];
|