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

require "tests.php";
require "template_arg_typename.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();
?>