13 lines
295 B
PHP
13 lines
295 B
PHP
<?php
|
|
|
|
require "tests.php";
|
|
require "cpp_static.php";
|
|
|
|
// New functions
|
|
check::functions(array('is_python_builtin'));
|
|
// New classes
|
|
check::classes(array('StaticMemberTest','StaticFunctionTest','cpp_static','StaticBase','StaticDerived'));
|
|
// No new vars
|
|
check::globals(array());
|
|
|
|
check::done();
|