summaryrefslogtreecommitdiff
path: root/tests/php/phpt/class_obj/002.phpt
blob: 847e6025a99bd08c5e6c847b6ecc8cd0961db73e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
Test constructor & destructor
--SKIPIF--
<?php if (!extension_loaded("extension_for_tests")) print "skip"; ?>
--FILEEOF--
<?php

echo count(new TestBaseClass\MyClass($x));

echo PHP_EOL;
--EXPECT--
MyCustomClass::MyCustomClass()
MyCustomClass::~MyCustomClass
33