From commits-return-31387-archive-asf-public=cust-asf.ponee.io@geode.apache.org Fri Apr 12 23:44:41 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 34A9A180621 for ; Sat, 13 Apr 2019 01:44:41 +0200 (CEST) Received: (qmail 4872 invoked by uid 500); 12 Apr 2019 23:44:40 -0000 Mailing-List: contact commits-help@geode.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@geode.apache.org Delivered-To: mailing list commits@geode.apache.org Received: (qmail 4863 invoked by uid 99); 12 Apr 2019 23:44:40 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Apr 2019 23:44:40 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 5B523814E1; Fri, 12 Apr 2019 23:44:40 +0000 (UTC) Date: Fri, 12 Apr 2019 23:44:39 +0000 To: "commits@geode.apache.org" Subject: [geode] branch feature/GEODE-6647 updated: GEODE-6647: Move CreatePooledJndiBindingDUnitTest MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <155511267849.23672.2203318701763458980@gitbox.apache.org> From: jchen21@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: geode X-Git-Refname: refs/heads/feature/GEODE-6647 X-Git-Reftype: branch X-Git-Oldrev: ff3fab46cb2bf638d5aaf71747db013763db8e2a X-Git-Newrev: b3d9575e8f3060488fd9f091ef97fda551e3d9a4 X-Git-Rev: b3d9575e8f3060488fd9f091ef97fda551e3d9a4 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. jchen21 pushed a commit to branch feature/GEODE-6647 in repository https://gitbox.apache.org/repos/asf/geode.git The following commit(s) were added to refs/heads/feature/GEODE-6647 by this push: new b3d9575 GEODE-6647: Move CreatePooledJndiBindingDUnitTest b3d9575 is described below commit b3d9575e8f3060488fd9f091ef97fda551e3d9a4 Author: Jianxia Chen AuthorDate: Fri Apr 12 16:43:34 2019 -0700 GEODE-6647: Move CreatePooledJndiBindingDUnitTest Authored-by: Jianxia Chen --- .../CreatePooledJndiBindingDUnitTest.java | 26 ++++++++++------------ 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/geode-connectors/src/acceptanceTest/java/org/apache/geode/connectors/jdbc/CreatePooledJndiBindingDUnitTest.java b/geode-core/src/distributedTest/java/org/apache/geode/management/internal/cli/commands/CreatePooledJndiBindingDUnitTest.java similarity index 82% rename from geode-connectors/src/acceptanceTest/java/org/apache/geode/connectors/jdbc/CreatePooledJndiBindingDUnitTest.java rename to geode-core/src/distributedTest/java/org/apache/geode/management/internal/cli/commands/CreatePooledJndiBindingDUnitTest.java index c0dbb48..a529d3e 100644 --- a/geode-connectors/src/acceptanceTest/java/org/apache/geode/connectors/jdbc/CreatePooledJndiBindingDUnitTest.java +++ b/geode-core/src/distributedTest/java/org/apache/geode/management/internal/cli/commands/CreatePooledJndiBindingDUnitTest.java @@ -1,20 +1,18 @@ /* - * 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 + * 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. + * 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.geode.connectors.jdbc; +package org.apache.geode.management.internal.cli.commands; import static org.assertj.core.api.AssertionsForInterfaceTypes.assertThat; @@ -32,11 +30,11 @@ import org.apache.geode.management.internal.configuration.domain.Configuration; import org.apache.geode.management.internal.configuration.utils.XmlUtils; import org.apache.geode.test.dunit.rules.ClusterStartupRule; import org.apache.geode.test.dunit.rules.MemberVM; -import org.apache.geode.test.junit.categories.JDBCConnectorTest; +import org.apache.geode.test.junit.categories.GfshTest; import org.apache.geode.test.junit.rules.GfshCommandRule; import org.apache.geode.test.junit.rules.VMProvider; -@Category({JDBCConnectorTest.class}) +@Category(GfshTest.class) public class CreatePooledJndiBindingDUnitTest { private MemberVM locator, server1, server2;