use of org.springframework.data.mongodb.core.SimpleMongoClientDatabaseFactory in project SpringBoot-E-Commerce by kimyoungi99.
the class MongoDBCategoryDaoTest method init.
@BeforeEach
public void init() {
this.categoryDao = new MongoDBCategoryDao(this.mongoTemplate);
this.categoryEntity1 = CategoryEntity.builder().name("electronics").count(0L).build();
this.wrongCategoryDao = new MongoDBCategoryDao(new MongoTemplate(new SimpleMongoClientDatabaseFactory("mongodb://localhost:9909/product")));
}
Aggregations