Skip to content

Instantly share code, notes, and snippets.

@stefanorg
Created November 1, 2015 20:14
Show Gist options
  • Save stefanorg/4b65027fe1babacf975e to your computer and use it in GitHub Desktop.
Save stefanorg/4b65027fe1babacf975e to your computer and use it in GitHub Desktop.
dummy unit test
<?php
/**
* @backupGlobals disabled
* @backupStaticAttributes disabled
*/
class ServiceTest extends \Codeception\TestCase\Test
{
use \Codeception\Specify;
/**
* @var \UnitTester
*/
protected $tester;
protected function _before()
{
}
protected function _after()
{
}
// tests
public function testMe()
{
$this->specify("Dummy test.", function(){
verify(true)->equals(true);
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment