This is an automated email from the ASF dual-hosted git repository.
zhaojinchao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git
The following commit(s) were added to refs/heads/master by this push:
new 050840b2279 Remove TableAndSchemaNameMapperTest (#28942)
050840b2279 is described below
commit 050840b227944d79383bb8b911eca9e60a41bd9e
Author: Liang Zhang <[email protected]>
AuthorDate: Sat Nov 4 22:57:55 2023 +0800
Remove TableAndSchemaNameMapperTest (#28942)
---
.../api/context/TableAndSchemaNameMapperTest.java | 52 ----------------------
1 file changed, 52 deletions(-)
diff --git
a/kernel/data-pipeline/api/src/test/java/org/apache/shardingsphere/data/pipeline/api/context/TableAndSchemaNameMapperTest.java
b/kernel/data-pipeline/api/src/test/java/org/apache/shardingsphere/data/pipeline/api/context/TableAndSchemaNameMapperTest.java
deleted file mode 100644
index fc9521a4ed0..00000000000
---
a/kernel/data-pipeline/api/src/test/java/org/apache/shardingsphere/data/pipeline/api/context/TableAndSchemaNameMapperTest.java
+++ /dev/null
@@ -1,52 +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.shardingsphere.data.pipeline.api.context;
-
-import org.junit.jupiter.api.Test;
-
-import java.util.Arrays;
-import java.util.Collections;
-import java.util.Map;
-
-import static org.hamcrest.CoreMatchers.is;
-import static org.hamcrest.MatcherAssert.assertThat;
-import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;
-import static org.junit.jupiter.api.Assertions.assertNull;
-
-class TableAndSchemaNameMapperTest {
-
- @Test
- void assertConstructFromNull() {
- assertDoesNotThrow(() -> new TableAndSchemaNameMapper((Map<String,
String>) null));
- }
-
- @Test
- void assertConstructFromValueNullMap() {
- assertNull(new
TableAndSchemaNameMapper(Collections.singletonMap("t_order",
null)).getSchemaName("t_order"));
- }
-
- @Test
- void assertConstructFromMap() {
- assertThat(new
TableAndSchemaNameMapper(Collections.singletonMap("t_order",
"public")).getSchemaName("t_order"), is("public"));
- }
-
- @Test
- void assertConstructFromCollection() {
- assertThat(new
TableAndSchemaNameMapper(Arrays.asList("public.t_order",
"t_order_item")).getSchemaName("t_order"), is("public"));
- }
-}