Skip to content

Instantly share code, notes, and snippets.

@Rayne
Created May 23, 2015 11:07
Show Gist options
  • Save Rayne/5afcf404d334465850db to your computer and use it in GitHub Desktop.
Save Rayne/5afcf404d334465850db to your computer and use it in GitHub Desktop.
Basic FatFreeFramework/Base->mock() + PHPUnit example
<?php
class F3PHPUnitTest extends PHPUnit_Framework_TestCase {
public function test() {
$f3 = Base::instance();
// Don't write to STDOUT
$f3->set('QUIET', true);
$f3->route('GET /path', function(){ echo 'TEXT'; });
$this->assertNull($f3->mock('GET /path'));
$this->assertSame('TEXT', $f3->get('RESPONSE'));
}
}
@born-kes
Copy link

born-kes commented May 4, 2020

Hello,
I have a problem with mock and phpunit

when I use base->mock() Assertion did not work $this->expectOutputString.
look here https://stackoverflow.com/questions/61594665/how-to-use-expectoutputstring-phpunits/61594808#61594808

For the record, this is not the whole problem, I hope it's not problem.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment