1
2
3
4
5
6
7
8
9
10
11
12
|
<?php namespace Aura\Session;
class SessionFactoryTest extends \PHPUnit_Framework_TestCase { public function testNewInstance() { $session_factory = new SessionFactory; $session = $session_factory->newInstance($_COOKIE); $this->assertInstanceOf('Aura\Session\Session', $session); } }
|