PhpSpreadsheet/tests/rawTestData/Calculation/Logical/AND.data
Adrien Crivelli 00657c906e
Reorganize unit tests
All code for unit tests is now under the `PhpSpreadsheet\Tests` namespace
which is autoloaded via composer mechanism. So there is no need for
`require()` anymore.

Also, tests were moved in `tests/` folder and phpunit should be executed from
the project root folder. This is to conform to the de facto standard, notably
in use in phpunit itself.
2016-08-14 02:29:33 +09:00

22 lines
693 B
Plaintext

"#VALUE!" // No arguments
NULL, TRUE // NULL
TRUE, NULL, TRUE // Boolean TRUE and NULL
FALSE, NULL, FALSE // Boolean FALSE and NULL
TRUE, TRUE, TRUE // Both TRUE Booleans
TRUE, FALSE, FALSE // Mixed Booleans
FALSE, TRUE, FALSE // Mixed Booleans
FALSE, FALSE, FALSE // Both FALSE Booleans
TRUE, TRUE, FALSE, FALSE // Multiple Mixed Booleans
TRUE, TRUE, TRUE, TRUE // Multiple TRUE Booleans
FALSE, FALSE, FALSE, FALSE, FALSE // Multiple FALSE Booleans
-1, -2, TRUE
0, 0, FALSE
0, 1, FALSE
1, 1, TRUE
"1",1, "#VALUE!"
"TRUE", 1, TRUE // 'TRUE' String
"FALSE",TRUE, FALSE // 'FALSE' String
"ABCD", 1, "#VALUE!" // Non-numeric String
-2, 1, TRUE
-2, 0, FALSE