1--TEST--
2https://github.com/sebastianbergmann/phpunit/issues/1472
3--SKIPIF--
4<?php
5// See: https://github.com/facebook/hhvm/issues/4669
6if (defined('HHVM_VERSION')) {
7    print 'skip: HHVM does not support cloning DOM nodes';
8}
9?>
10--FILE--
11<?php
12$_SERVER['argv'][1] = '--no-configuration';
13$_SERVER['argv'][2] = 'Issue1472Test';
14$_SERVER['argv'][3] = __DIR__ . '/1472/Issue1472Test.php';
15
16require __DIR__ . '/../../bootstrap.php';
17PHPUnit_TextUI_Command::main();
18--EXPECTF--
19PHPUnit %s by Sebastian Bergmann and contributors.
20
21.                                                                   1 / 1 (100%)
22
23Time: %s, Memory: %s
24
25OK (1 test, 4 assertions)
26