| 1 | <?php |
||
| 7 | class TestSession |
||
| 8 | extends |
||
|
|
|||
| 9 | PHPUnit_Framework_TestCase |
||
| 10 | { |
||
| 11 | |||
| 12 | protected $array; |
||
| 13 | |||
| 14 | public function setUp() |
||
| 15 | { |
||
| 16 | $this->array['key'] = 'test'; |
||
| 17 | $this->array['value'] = 'test'; |
||
| 18 | Session::put($this->array['key'], $this->array['value']); |
||
| 19 | } |
||
| 20 | |||
| 21 | public function testGet() |
||
| 26 | |||
| 27 | public function tearDown() |
||
| 33 | } |
||
| 34 | |||
| 35 |