コード例 #1
0
 public function testSet()
 {
     $message = 'Astronomy compels the soul to look upward, and leads us from ';
     $message .= 'this world to another.';
     $this->session->set('Plato', $message);
     $this->assertEquals($message, $this->session->get('Plato'));
 }