Esempio n. 1
0
  public void addTestImpediments() {
    Impediment imp = null;

    // no documentation
    imp =
        impedimentDao.postImpediment(
            this, Date.randomPast(5), "There is no documentation. Seriously.", false);
    imp.setDescription("Someone promised that, I remember. Where is it?");

    // no daily scrums
    imp =
        impedimentDao.postImpediment(this, Date.randomPast(5), "Daily Scrums are not daily", true);
    imp.setDescription(
        "\"Daily Scrums\" are supposed to be daily. That's why they are called DAILY Scrums.");
    imp.setSolution(
        "Fixed time and place to 09.00 p. m. at Starbucks every morning (except weekdays, weekends and holydays).");

    // no coffee
    imp =
        impedimentDao.postImpediment(this, Date.randomPast(5), "There is no coffee machine", false);
  }