Home
last modified time | relevance | path

Searched refs:test (Results 126 – 150 of 4507) sorted by last modified time

12345678910>>...181

/PHP-5.5/tests/lang/
H A D032.phpt24 // Following class definition should fail, but cannot test
H A D033.phpt2 Alternative syntaxes test
H A D045.phpt5 if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
/PHP-5.5/tests/classes/
H A Dproperty_recreate_private.phpt6 private $p = 'test';
H A Dproperty_recreate_protected.phpt6 protected $p = 'test';
H A Dstatic_properties_001.phpt8 class test {
12 var_dump(test::$ar);
14 test::$ar[] = 1;
16 var_dump(test::$ar);
H A Dthis.phpt8 /* please don't shorten this test. It shows what would happen if
H A Dfactory_and_singleton_003.phpt2 ZE2 factory and singleton, test 3
7 class test {
13 $obj = new test;
18 Fatal error: Call to protected test::__construct() from invalid context in %s on line %d
H A Dfactory_and_singleton_004.phpt2 ZE2 factory and singleton, test 4
7 class test {
13 $obj = new test;
18 Fatal error: Call to private test::__construct() from invalid context in %s on line %d
H A Dfactory_and_singleton_005.phpt2 ZE2 factory and singleton, test 5
7 class test {
13 $obj = new test;
19 Fatal error: Call to protected test::__destruct() from context '' in %sfactory_and_singleton_005.ph…
H A Dfactory_and_singleton_006.phpt2 ZE2 factory and singleton, test 6
7 class test {
13 $obj = new test;
19 Fatal error: Call to private test::__destruct() from context '' in %sfactory_and_singleton_006.php …
H A Dfactory_and_singleton_007.phpt2 ZE2 factory and singleton, test 7
7 class test {
13 $obj = new test;
20 Fatal error: Call to protected test::__clone() from context '' %sfactory_and_singleton_007.php on l…
H A Dfactory_and_singleton_008.phpt2 ZE2 factory and singleton, test 8
7 class test {
13 $obj = new test;
20 Fatal error: Call to private test::__clone() from context '' %sfactory_and_singleton_008.php on lin…
H A Dfactory_and_singleton_009.phpt2 ZE2 factory and singleton, test 9
7 class test {
14 $obj = new test;
21 Warning: Call to protected test::__destruct() from context '' during shutdown ignored in Unknown on…
H A Dfactory_and_singleton_010.phpt2 ZE2 factory and singleton, test 10
7 class test {
14 $obj = new test;
21 Warning: Call to private test::__destruct() from context '' during shutdown ignored in Unknown on l…
H A Dinheritance.phpt2 Classes inheritance test
6 /* Inheritance test. Pretty nifty if I do say so myself! */
H A Dinterface_doubled.phpt32 function test($class) {
48 echo $t->test('if_a');
49 echo $t->test('if_b');
50 echo $t->test('if_c');
51 echo $t->test('if_d');
52 echo $t->test('if_e');
65 echo $t->test('if_a');
66 echo $t->test('if_b');
67 echo $t->test('if_c');
68 echo $t->test('if_d');
[all …]
H A Dinterface_implemented.phpt20 function test() {
49 $t->test();
52 $t->test();
55 $t->test();
58 $t->test();
61 $t->test();
H A Dinterface_optional_arg.phpt10 interface test {
14 class foo implements test {
H A Dinterface_optional_arg_002.phpt8 interface test {
12 class foo implements test {
H A Diterators_005.phpt8 class test implements Traversable {
11 $obj = new test;
19 Fatal error: Class test must implement interface Traversable as part of either Iterator or Iterator…
H A Dprivate_members.phpt16 $this->test();
20 function test()
36 $this->test();
50 $t->test();
59 base::test
65 derived::test
72 base::test
78 base::test
84 derived::test
91 base::test
[all …]
H A Dprivate_redeclare.phpt9 function test() {
15 $t->test();
21 function test() {
22 echo "test\n";
24 parent::test();
30 $t->test();
34 test
H A Darray_access_012.phpt25 $test = 'some data';
27 $data['element'] = &$test;
H A Dautoload_001.phpt6 if (class_exists('autoload_root', false)) die('skip Autoload test classes exist already');

Completed in 59 milliseconds

12345678910>>...181