/**
  * Ensure the clear method clears the lexicon
  * @depends testLoad
  */
 public function testClear()
 {
     $this->lexicon->load('user');
     $this->assertGreaterThan(0, $this->lexicon->total());
     $this->lexicon->clear();
     $this->assertEquals(0, $this->lexicon->total());
 }