for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* SocialConnect project
* @author: Patsura Dmitry https://github.com/ovr <[email protected]>
*/
namespace Test;
use PHPUnit_Framework_TestCase;
use SocialConnect\Auth\Service;
class TestCase extends PHPUnit_Framework_TestCase
{
protected function getService()
return new Service(
array(
'provider' => array(
'Vk' => array(
'applicationId' => 123456,
'applicationSecret' => 'Secret'
)
),
null
);
}