Package com.github.jmkgreen.morphia.logging.slf4j

Source Code of com.github.jmkgreen.morphia.logging.slf4j.TestBase

/**
*
*/
package com.github.jmkgreen.morphia.logging.slf4j;

import org.junit.Before;

import com.github.jmkgreen.morphia.Datastore;
import com.github.jmkgreen.morphia.Morphia;
import com.mongodb.DB;
import com.mongodb.Mongo;

public abstract class TestBase {
 
  protected Mongo mongo;
  protected DB db;
  protected Datastore ds;
  protected Morphia morphia;
 
  @Before
  public void setUp() {
    try {
      this.mongo = new Mongo();
    } catch (final Exception e) {
      throw new RuntimeException(e);
    }
   
    this.mongo.dropDatabase("morphia_test");
    morphia = new Morphia();
    this.db = this.mongo.getDB("morphia_test");
    this.ds = this.morphia.createDatastore(this.mongo, this.db.getName())
  }
}
TOP

Related Classes of com.github.jmkgreen.morphia.logging.slf4j.TestBase

TOP
Copyright © 2018 www.massapi.com. 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.