예제 #1
0
 public function testGetName()
 {
     $this->assertEquals('country', $this->testFixture->getName());
 }
예제 #2
0
 public function testWillParseFlagsOutOfTheName()
 {
     $fixture = new Fixture(self::USER, 'user (local)', [], null);
     $this->assertEquals('user', $fixture->getName());
 }
예제 #3
0
 private function loadFixture(Fixture $fixture)
 {
     $fixture->load();
     $this->notifyFixtureLoaded($fixture->getName());
 }