00657c906e
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.
17 lines
372 B
Plaintext
17 lines
372 B
Plaintext
"FF", "11111111"
|
|
"1FF", "111111111"
|
|
"200", "#NUM!"
|
|
"FFFFFFFE00", "1000000000" // 2's Complement
|
|
"FFFFFFFDFF", "#NUM!" // 2's Complement
|
|
"01AB", "110101011"
|
|
"ABCD", "#NUM!"
|
|
"F6", "11110110"
|
|
"F", 8, "00001111"
|
|
"B7", "10110111"
|
|
"12345", "#NUM!"
|
|
"123456789", "#NUM!"
|
|
"123.45", "#NUM!"
|
|
"0", "0"
|
|
"G3579A", "#NUM!"
|
|
TRUE, "#VALUE!"
|
|
"-107", "#NUM!" |