Exemplo n.º 1
0
<?php

// testC.php
require __DIR__ . '\\..\\vendor\\autoload.php';
$child = new \mockSuperMethods\C();
echo $child->g();
Exemplo n.º 2
0
 public function testG_actual()
 {
     $c = new \mockSuperMethods\C();
     $actual = $c->g();
     $this->assertEquals('From Grandparent updated by Child', $actual);
 }