Example #1
0
  @Before
  public void setup() {
    Fixtures.deleteAll();

    Fixtures.load("data.yml");

    duckRunnerGame = Game.find("byName", "Duck Runner").first();
    parkingLotGame = Game.find("byName", "Parking Lot").first();
  }
Example #2
0
 @Before
 public void setUp() {
   Fixtures.deleteAll();
   Fixtures.load("fixtures.yml");
 }
Example #3
0
 @Before
 public void setUpData() {
   Fixtures.deleteAll();
   Fixtures.load("test-data.yml");
 }