Example #1
0
 /**
  * @test
  */
 public function isTriggeredByStore()
 {
     $store = new Store("identity_card");
     $anotherStore = new Store("profile_network");
     $store->addTriggeredByStore($anotherStore);
     $this->assertThat($store->isNeverTriggered(), $this->isFalse());
     $this->assertThat($store->isTriggeredByStore($anotherStore), $this->isTrue());
 }