This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch exchange-factory in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/exchange-factory by this push: new c9219fe CAMEL-16222: PooledExchangeFactory experiment c9219fe is described below commit c9219feca0c78d5e02b0a03fe5b9ba42d8db74bf Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Mon Feb 22 16:46:40 2021 +0100 CAMEL-16222: PooledExchangeFactory experiment --- .../camel/component/gora/GoraConsumerTest.java | 88 ---------------------- 1 file changed, 88 deletions(-) diff --git a/components/camel-gora/src/test/java/org/apache/camel/component/gora/GoraConsumerTest.java b/components/camel-gora/src/test/java/org/apache/camel/component/gora/GoraConsumerTest.java deleted file mode 100644 index 7acee3b..0000000 --- a/components/camel-gora/src/test/java/org/apache/camel/component/gora/GoraConsumerTest.java +++ /dev/null @@ -1,88 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.apache.camel.component.gora; - -import java.lang.reflect.InvocationTargetException; - -import org.apache.camel.Exchange; -import org.apache.camel.Message; -import org.apache.camel.Processor; -import org.apache.gora.persistency.Persistent; -import org.apache.gora.query.Query; -import org.apache.gora.store.DataStore; -import org.junit.jupiter.api.Test; -import org.junit.jupiter.api.extension.ExtendWith; -import org.mockito.Mock; -import org.mockito.junit.jupiter.MockitoExtension; - -import static org.mockito.Mockito.when; - -/** - * GORA Consumer Tests - */ -@ExtendWith(MockitoExtension.class) -public class GoraConsumerTest extends GoraTestSupport { - - /** - * Mock CamelExchange - */ - @Mock - private Exchange mockCamelExchange; - - /** - * Mock Gora Endpoint - */ - @Mock - private GoraEndpoint mockGoraEndpoint; - - /** - * Mock Gora Configuration - */ - @Mock - private GoraConfiguration mockGoraConfiguration; - - /** - * Mock Camel Message - */ - @Mock - private Message mockCamelMessage; - - /** - * Mock Gora DataStore - */ - @Mock - private DataStore<Object, Persistent> mockDatastore; - - /** - * Mock Processor - */ - private Processor mockGoraProcessor; - - /** - * Mock Query - */ - @Mock - private Query<Object, Persistent> mockQuery; - - @Test - public void consumerInstantiationWithMocksShouldSucceed() - throws ClassNotFoundException, NoSuchMethodException, IllegalAccessException, InvocationTargetException { - when(mockDatastore.newQuery()).thenReturn(mockQuery); - new GoraConsumer(mockGoraEndpoint, mockGoraProcessor, mockGoraConfiguration, mockDatastore); - } - -}