Exemplo n.º 1
0
 /**
  * @test
  * @expectedException \Apha\StateStore\Storage\DocumentNotFoundException
  */
 public function clearIsIdempotent()
 {
     $storage = new MemoryStateStorage();
     $storage->clear();
     $storage->find('someidentity');
 }