Package org.sonar.server.activity.db

Examples of org.sonar.server.activity.db.ActivityDao


  DbSession session;

  @Before
  public void setUp() throws Exception {
    when(system2.now()).thenReturn(DateUtils.parseDate("2014-03-13").getTime());
    dao = new ActivityDao(system2);
    dbClient = new DbClient(db.database(), db.myBatis(), dao);
    migration = new ChangeLogMigration(dao, dbClient);
    session = dbClient.openSession(false);
  }
View Full Code Here

TOP

Related Classes of org.sonar.server.activity.db.ActivityDao

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.