summaryrefslogtreecommitdiff
path: root/ext/intl/tests/symfony_format_type_int64_intl7.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/intl/tests/symfony_format_type_int64_intl7.phpt')
-rw-r--r--ext/intl/tests/symfony_format_type_int64_intl7.phpt30
1 files changed, 0 insertions, 30 deletions
diff --git a/ext/intl/tests/symfony_format_type_int64_intl7.phpt b/ext/intl/tests/symfony_format_type_int64_intl7.phpt
deleted file mode 100644
index 27b5a79f24..0000000000
--- a/ext/intl/tests/symfony_format_type_int64_intl7.phpt
+++ /dev/null
@@ -1,30 +0,0 @@
---TEST--
-Symfony StubNumberFormatterTest#testFormatTypeInt64Intl #7
---SKIPIF--
-<?php if( !extension_loaded( 'intl' ) ) print 'skip'; ?>
---FILE--
-<?php
-
-
-// PHP Unit's code to unserialize data passed as args to #testFormatTypeInt64Intl
-$unit_test_args = unserialize('a:3:{i:0;O:15:"NumberFormatter":0:{}i:1;d:2147483648;i:2;s:19:"SFD2,147,483,648.00";}');
-
-var_dump($unit_test_args);
-
-// execute the code from #testFormatTypeInt64Intl
-try {
- $unit_test_args[0]->format($unit_test_args[1], \NumberFormatter::TYPE_INT64);
-} catch (Error $exception) {
- echo $exception->getMessage() . "\n";
-}
---EXPECT--
-array(3) {
- [0]=>
- object(NumberFormatter)#1 (0) {
- }
- [1]=>
- float(2147483648)
- [2]=>
- string(19) "SFD2,147,483,648.00"
-}
-Found unconstructed NumberFormatter