for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PSR7SessionsTest\Storage\Id;
use PHPUnit_Framework_TestCase;
use PSR7Sessions\Storage\Id\SessionId;
class SessionIdTest extends PHPUnit_Framework_TestCase
{
public function testToString()
$id = new SessionId('my-id');
$this->assertSame('my-id', (string)$id);
}