magicOracle
A proxy class developed for unit testing that makes all methods and properties public to you., (*1)
, (*2)
Basic Example
<?php
// Library
include('../magicOracle/src/Oracle.php');
// Namespace
use magicOracle\src\Oracle as Oracle;
// Mock Class
class Foo {
public $publicProperty;
private $privateProperty;
protected $protectedProperty;
public function __construct() {
$this->publicProperty = 'foo';
$this->privateProperty = 'bar';
$this->protectedProperty = 'baz';
}
public function publicMethod($words) {
return $words;
}
private function privateMethod() {
return $this->publicProperty;
}
}
// new class
$fooBar = new Oracle('Foo');
// Call private method
echo $fooBar->privateMethod(); // 'foo';
// Echo protected variable
echo $fooBar->protectedProperty; // 'baz';
// Set and echo protected variable
echo $fooBar->privateProperty; // 'bar';
$fooBar->privateProperty = 'BlaineSch';
echo $fooBar->privateProperty; // BlaineSch
Constructing Oracle
With class name, (*3)
$fooBar = new Oracle('Foo');
With class name and args, (*4)
$fooBar = new Oracle('Foo', array('arg1', 'arg2'));
With object, (*5)
$foo = new Foo('arg1', 'arg2');
$fooBar = new Oracle($foo);
Requirements
Contributing
Requirements
Unit Testing
cd magicOracle
phpunit ./
PHPUnit 3.6.12 by Sebastian Bergmann.
Configuration read from /Users/blaineschmeisser/Sites/devup/magicOracle/phpunit.xml
......
Time: 0 seconds, Memory: 5.00Mb
OK (6 tests, 9 assertions)