Skip to content

Instantly share code, notes, and snippets.

@DavertMik
Last active December 20, 2015 00:39
Show Gist options
  • Save DavertMik/6043065 to your computer and use it in GitHub Desktop.
Save DavertMik/6043065 to your computer and use it in GitHub Desktop.
The power of AspectMock framework
<?php
// Can your mocking framework do this? ;)
$this->assertEquals('users', UserModel::tableName());
double::registerClass('\demo\UserModel', ['tableName' => 'my_users']);
$this->assertEquals('my_users', UserModel::tableName());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment