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