Example #1
0
 /**
  * @test
  */
 public function doesNotDependOnStore()
 {
     $store = new Store("identity_card");
     $aSecondStore = new Store("profile_network");
     $aThirdStore = new Store("profile_friends");
     $store->addTriggeredByStore($aSecondStore);
     // aSecondStore => store but aThirdStore is not wired
     $this->assertThat($store->dependsOnStore($aThirdStore), $this->isFalse());
 }