Esempio n. 1
0
 /**
  * Store will remove symbols correctly
  *
  * @covers \SameAsLite\StoreInterface::removeSymbol
  */
 public function testCanRemoveSymbol()
 {
     $symbol = 'aaa';
     $this->store->removeSymbol($symbol);
     $this->assertFalse($this->isSymbolInStore($symbol));
 }