/** * Copyright (C) 2009-2015 FoundationDB, LLC * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package com.foundationdb.server.test.it; import com.foundationdb.server.service.servicemanager.GuicedServiceManager.BindingsConfigurationProvider; import com.foundationdb.server.service.transaction.TransactionService; import com.foundationdb.server.store.MemorySchemaManager; import com.foundationdb.server.store.MemoryStore; import com.foundationdb.server.store.MemoryTransactionService; import com.foundationdb.server.store.SchemaManager; import com.foundationdb.server.store.Store; import com.foundationdb.server.store.statistics.IndexStatisticsService; import com.foundationdb.server.store.statistics.MemoryIndexStatisticsService; import java.util.Map; public class MemoryITBase extends ITBase { /** For use by classes that cannot extend this class directly */ public static BindingsConfigurationProvider doBind(BindingsConfigurationProvider provider) { return provider.bind(SchemaManager.class, MemorySchemaManager.class) .bind(Store.class, MemoryStore.class) .bind(IndexStatisticsService.class, MemoryIndexStatisticsService.class) .bind(TransactionService.class, MemoryTransactionService.class); } @Override protected BindingsConfigurationProvider serviceBindingsProvider() { return doBind(super.serviceBindingsProvider()); } @Override protected Map<String, String> startupConfigProperties() { return uniqueStartupConfigProperties(getClass()); } }