summaryrefslogtreecommitdiff
path: root/Examples/test-suite/php/cpp_static_runme.php
blob: 9292a63cf190823bf65034551f3afc4f63754c49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

require "tests.php";
require "cpp_static.php";

// No new functions
check::functions(array());
// No new classes
check::classes(array(StaticMemberTest,StaticFunctionTest));
// now new vars
check::globals(array());

check::done();
?>