Skip to content

Instantly share code, notes, and snippets.

@eriktorsner
Last active April 25, 2017 10:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eriktorsner/59790344eb14d30f86160a972d328395 to your computer and use it in GitHub Desktop.
Save eriktorsner/59790344eb14d30f86160a972d328395 to your computer and use it in GitHub Desktop.
Snippet from helloTestableTest.php
<?php
public function testEchoLyric()
{
$mockLyric = new \MockLyric('foobar');
$hello = new helloTestable($mockLyric);
$this->expectOutputRegex('/.*foobar*./');
$hello->echoLyric();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment