for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Promopult\Integra\Test;
class RequestTest extends \PHPUnit\Framework\TestCase
{
public function testGetCryptUrl()
$request = new \Promopult\Integra\Request(
'hello',
['name' => 'name'],
new \Promopult\Integra\Test\CredentialsMock,
new \Promopult\Integra\Test\CryptMock
);
$this->assertEquals('host/path/hello?k=zaahash%7B%22name%22%3A%22name%22%7D', $request->getCryptUrl());
}