Pantheon\Terminus\UnitTests\Session\SessionTest::testDestroy PHP Method

testDestroy() public method

Test destroying the session
public testDestroy ( )
    public function testDestroy()
    {
        $this->filecache->expects($this->once())->method('remove')->with('session');
        $this->session->destroy();
    }