Package org.sonar.server.issue.db

Examples of org.sonar.server.issue.db.IssueDao


  @Before
  public void setupDbClient() {
    dbClient = new DbClient(getDatabase(), getMyBatis(),
      new ComponentDao(System2.INSTANCE),
      new IssueDao(System2.INSTANCE),
      new ResourceDao(getMyBatis(), System2.INSTANCE));
    session = dbClient.openSession(false);

    storage = new ServerIssueStorage(getMyBatis(), new FakeRuleFinder(), dbClient);
  }
View Full Code Here

TOP

Related Classes of org.sonar.server.issue.db.IssueDao

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.