summaryrefslogtreecommitdiff
path: root/tests/php/phpt/base/002.phpt
diff options
context:
space:
mode:
authorvalmat <ufabiz@gmail.com>2014-03-18 15:18:11 +0600
committervalmat <ufabiz@gmail.com>2014-03-18 15:18:11 +0600
commite8334afd7f2920b706a3d28250a3e2b6dbd49538 (patch)
treea92e2b1b67c22eaad7eb84a2138ede2dae12e873 /tests/php/phpt/base/002.phpt
parentbfaed88493de0a3ebd7f2619cb11291cd09252b1 (diff)
Unit tests. For description see https://github.com/CopernicaMarketingSoftware/PHP-CPP/pull/25#issuecomment-37882236
Diffstat (limited to 'tests/php/phpt/base/002.phpt')
-rw-r--r--tests/php/phpt/base/002.phpt14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/php/phpt/base/002.phpt b/tests/php/phpt/base/002.phpt
new file mode 100644
index 0000000..a6f611b
--- /dev/null
+++ b/tests/php/phpt/base/002.phpt
@@ -0,0 +1,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 \ No newline at end of file