示例#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());
 }