Package com.thoughtworks.testme.db

Examples of com.thoughtworks.testme.db.TestMeDatabase


   */
  String run(String... args) {
    String result = "";

    if (args.length > 0) {
      db = new TestMeDatabase(databaseFileName); // uses default file name if null

      if ("--reset".equalsIgnoreCase(args[0])) {
        int recordCount = db.getNumberOfMappings();
        db.deleteDatabase();
        result = String.format("Reset database %s, removed mappings for %d class source files", db.getFileName(), recordCount);
View Full Code Here


  private static final String TEST_DATABASE = "TestMeDatabaseTest.db";
  private TestMeDatabase db;

  @Override
  protected void setUp() throws Exception {
    db = new TestMeDatabase(TEST_DATABASE);
    super.setUp();
  }
View Full Code Here

TOP

Related Classes of com.thoughtworks.testme.db.TestMeDatabase

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.