aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/php/director_ignore_runme.php
blob: 87bc4757d471096cbf31779edcd58694e749eeb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php

require "tests.php";

// No new functions
check::functions(array());
check::classes(array('DAbstractIgnores','DIgnores','DTemplateAbstractIgnoresInt','DIgnoreConstructor','DIgnoreOnlyConstructor','DIgnoreDestructor'));
// No new vars
check::globals(array());

class DIgnoresDerived extends DIgnores {
  function PublicMethod1() {
    return 18.75;
  }
}

class DAbstractIgnoresDerived extends DAbstractIgnores {
}

$a = new DIgnoresDerived();
check::equal($a->Triple(5), 15, "Wrong return value");

$b = new DAbstractIgnoresDerived();
check::equal($b->Quadruple(5), 20, "Wrong return value");