aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/php/template_arg_typename_runme.php
blob: c7fcbbd9d79a3cc945080c76184144647c89c4ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

require "tests.php";

// No new functions
check::functions(array());
// No new classes
check::classes(array('UnaryFunction_bool_bool','BoolUnaryFunction_bool'));
$ufbb=new unaryfunction_bool_bool();
check::is_a($ufbb,"unaryfunction_bool_bool");

$whatisthis=NULL;
$bufb=new boolunaryfunction_bool($whatisthis);
check::is_a($bufb,"boolunaryfunction_bool");

check::done();