From 7be2ec63d32c59fdb793511836d96a83142834f1 Mon Sep 17 00:00:00 2001 From: Otavio Santana Date: Sat, 2 Mar 2024 13:51:11 +0000 Subject: [PATCH] feat: remove column manager mock Signed-off-by: Otavio Santana --- .../semistructured/ColumnManagerMock.java | 82 ------------------- 1 file changed, 82 deletions(-) delete mode 100644 jnosql-mapping/jnosql-mapping-semistructured/src/test/java/org/eclipse/jnosql/mapping/semistructured/ColumnManagerMock.java diff --git a/jnosql-mapping/jnosql-mapping-semistructured/src/test/java/org/eclipse/jnosql/mapping/semistructured/ColumnManagerMock.java b/jnosql-mapping/jnosql-mapping-semistructured/src/test/java/org/eclipse/jnosql/mapping/semistructured/ColumnManagerMock.java deleted file mode 100644 index b8b3a7cd0..000000000 --- a/jnosql-mapping/jnosql-mapping-semistructured/src/test/java/org/eclipse/jnosql/mapping/semistructured/ColumnManagerMock.java +++ /dev/null @@ -1,82 +0,0 @@ -/* - * Copyright (c) 2022 Contributors to the Eclipse Foundation - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * and Apache License v2.0 which accompanies this distribution. - * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html - * and the Apache License v2.0 is available at http://www.opensource.org/licenses/apache2.0.php. - * - * You may elect to redistribute this code under either of these licenses. - * - * Contributors: - * - * Otavio Santana - */ -package org.eclipse.jnosql.mapping.semistructured; - -import org.eclipse.jnosql.communication.semistructured.CommunicationEntity; -import org.eclipse.jnosql.communication.semistructured.DatabaseManager; -import org.eclipse.jnosql.communication.semistructured.DeleteQuery; -import org.eclipse.jnosql.communication.semistructured.SelectQuery; - -import java.time.Duration; -import java.util.stream.Stream; - -public class ColumnManagerMock implements DatabaseManager { - - - @Override - public String name() { - return null; - } - - @Override - public CommunicationEntity insert(CommunicationEntity entity) { - return null; - } - - @Override - public CommunicationEntity insert(CommunicationEntity entity, Duration ttl) { - return null; - } - - @Override - public Iterable insert(Iterable entities) { - return null; - } - - @Override - public Iterable insert(Iterable entities, Duration ttl) { - return null; - } - - @Override - public CommunicationEntity update(CommunicationEntity entity) { - return null; - } - - @Override - public Iterable update(Iterable entities) { - return null; - } - - @Override - public void delete(DeleteQuery query) { - - } - - @Override - public Stream select(SelectQuery query) { - return null; - } - - @Override - public long count(String entity) { - return 0; - } - - @Override - public void close() { - - } -}