preload_trait_alias.phpt 428 B

123456789101112131415161718192021222324
  1. --TEST--
  2. Preloading trait uses with aliased names
  3. --INI--
  4. opcache.enable=1
  5. opcache.enable_cli=1
  6. opcache.optimization_level=-1
  7. opcache.preload={PWD}/preload.inc
  8. --EXTENSIONS--
  9. opcache
  10. --SKIPIF--
  11. <?php
  12. if (PHP_OS_FAMILY == 'Windows') die('skip Preloading is not supported on Windows');
  13. ?>
  14. --FILE--
  15. <?php
  16. var_dump(get_class_methods('TraitAliasTest'));
  17. ?>
  18. --EXPECT--
  19. array(2) {
  20. [0]=>
  21. string(3) "bar"
  22. [1]=>
  23. string(3) "foo"
  24. }