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

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

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