You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by su...@apache.org on 2022/12/05 12:38:07 UTC

[shardingsphere] branch master updated: Rename package name of fixture test (#22675)

This is an automated email from the ASF dual-hosted git repository.

sunnianjun 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 5746ebb6691 Rename package name of fixture test (#22675)
5746ebb6691 is described below

commit 5746ebb6691c1ac45eb8a9455772aafd3d2c495d
Author: Liang Zhang <zh...@apache.org>
AuthorDate: Mon Dec 5 20:38:00 2022 +0800

    Rename package name of fixture test (#22675)
---
 .../{integration => e2e}/fixture/ITKeyGenerateAlgorithmFixture.java     | 2 +-
 .../{integration => e2e}/fixture/ITShardingAuditAlgorithmFixture.java   | 2 +-
 .../fixture/ITStandardShardingAlgorithmFixture.java                     | 2 +-
 .../org.apache.shardingsphere.sharding.spi.KeyGenerateAlgorithm         | 2 +-
 .../services/org.apache.shardingsphere.sharding.spi.ShardingAlgorithm   | 2 +-
 .../org.apache.shardingsphere.sharding.spi.ShardingAuditAlgorithm       | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/test/e2e/fixture/src/test/java/org/apache/shardingsphere/test/integration/fixture/ITKeyGenerateAlgorithmFixture.java b/test/e2e/fixture/src/test/java/org/apache/shardingsphere/test/e2e/fixture/ITKeyGenerateAlgorithmFixture.java
similarity index 95%
rename from test/e2e/fixture/src/test/java/org/apache/shardingsphere/test/integration/fixture/ITKeyGenerateAlgorithmFixture.java
rename to test/e2e/fixture/src/test/java/org/apache/shardingsphere/test/e2e/fixture/ITKeyGenerateAlgorithmFixture.java
index da8d3f0449a..51eb7097d00 100644
--- a/test/e2e/fixture/src/test/java/org/apache/shardingsphere/test/integration/fixture/ITKeyGenerateAlgorithmFixture.java
+++ b/test/e2e/fixture/src/test/java/org/apache/shardingsphere/test/e2e/fixture/ITKeyGenerateAlgorithmFixture.java
@@ -15,7 +15,7 @@
  * limitations under the License.
  */
 
-package org.apache.shardingsphere.test.integration.fixture;
+package org.apache.shardingsphere.test.e2e.fixture;
 
 import lombok.Getter;
 import org.apache.shardingsphere.sharding.spi.KeyGenerateAlgorithm;
diff --git a/test/e2e/fixture/src/test/java/org/apache/shardingsphere/test/integration/fixture/ITShardingAuditAlgorithmFixture.java b/test/e2e/fixture/src/test/java/org/apache/shardingsphere/test/e2e/fixture/ITShardingAuditAlgorithmFixture.java
similarity index 96%
rename from test/e2e/fixture/src/test/java/org/apache/shardingsphere/test/integration/fixture/ITShardingAuditAlgorithmFixture.java
rename to test/e2e/fixture/src/test/java/org/apache/shardingsphere/test/e2e/fixture/ITShardingAuditAlgorithmFixture.java
index 6e95b8245c4..7e0d372c686 100644
--- a/test/e2e/fixture/src/test/java/org/apache/shardingsphere/test/integration/fixture/ITShardingAuditAlgorithmFixture.java
+++ b/test/e2e/fixture/src/test/java/org/apache/shardingsphere/test/e2e/fixture/ITShardingAuditAlgorithmFixture.java
@@ -15,7 +15,7 @@
  * limitations under the License.
  */
 
-package org.apache.shardingsphere.test.integration.fixture;
+package org.apache.shardingsphere.test.e2e.fixture;
 
 import org.apache.shardingsphere.infra.binder.statement.SQLStatementContext;
 import org.apache.shardingsphere.infra.metadata.database.ShardingSphereDatabase;
diff --git a/test/e2e/fixture/src/test/java/org/apache/shardingsphere/test/integration/fixture/ITStandardShardingAlgorithmFixture.java b/test/e2e/fixture/src/test/java/org/apache/shardingsphere/test/e2e/fixture/ITStandardShardingAlgorithmFixture.java
similarity index 98%
rename from test/e2e/fixture/src/test/java/org/apache/shardingsphere/test/integration/fixture/ITStandardShardingAlgorithmFixture.java
rename to test/e2e/fixture/src/test/java/org/apache/shardingsphere/test/e2e/fixture/ITStandardShardingAlgorithmFixture.java
index 2588e0c3d76..f9dd096cda3 100644
--- a/test/e2e/fixture/src/test/java/org/apache/shardingsphere/test/integration/fixture/ITStandardShardingAlgorithmFixture.java
+++ b/test/e2e/fixture/src/test/java/org/apache/shardingsphere/test/e2e/fixture/ITStandardShardingAlgorithmFixture.java
@@ -15,7 +15,7 @@
  * limitations under the License.
  */
 
-package org.apache.shardingsphere.test.integration.fixture;
+package org.apache.shardingsphere.test.e2e.fixture;
 
 import lombok.Getter;
 import org.apache.shardingsphere.sharding.api.sharding.standard.PreciseShardingValue;
diff --git a/test/e2e/fixture/src/test/resources/META-INF/services/org.apache.shardingsphere.sharding.spi.KeyGenerateAlgorithm b/test/e2e/fixture/src/test/resources/META-INF/services/org.apache.shardingsphere.sharding.spi.KeyGenerateAlgorithm
index 9d02248e09c..f7d5dae02f2 100644
--- a/test/e2e/fixture/src/test/resources/META-INF/services/org.apache.shardingsphere.sharding.spi.KeyGenerateAlgorithm
+++ b/test/e2e/fixture/src/test/resources/META-INF/services/org.apache.shardingsphere.sharding.spi.KeyGenerateAlgorithm
@@ -15,4 +15,4 @@
 # limitations under the License.
 #
 
-org.apache.shardingsphere.test.integration.fixture.ITKeyGenerateAlgorithmFixture
+org.apache.shardingsphere.test.e2e.fixture.ITKeyGenerateAlgorithmFixture
diff --git a/test/e2e/fixture/src/test/resources/META-INF/services/org.apache.shardingsphere.sharding.spi.ShardingAlgorithm b/test/e2e/fixture/src/test/resources/META-INF/services/org.apache.shardingsphere.sharding.spi.ShardingAlgorithm
index 3cdaaeaa8b5..493660ac2e5 100644
--- a/test/e2e/fixture/src/test/resources/META-INF/services/org.apache.shardingsphere.sharding.spi.ShardingAlgorithm
+++ b/test/e2e/fixture/src/test/resources/META-INF/services/org.apache.shardingsphere.sharding.spi.ShardingAlgorithm
@@ -15,4 +15,4 @@
 # limitations under the License.
 #
  
-org.apache.shardingsphere.test.integration.fixture.ITStandardShardingAlgorithmFixture
+org.apache.shardingsphere.test.e2e.fixture.ITStandardShardingAlgorithmFixture
diff --git a/test/e2e/fixture/src/test/resources/META-INF/services/org.apache.shardingsphere.sharding.spi.ShardingAuditAlgorithm b/test/e2e/fixture/src/test/resources/META-INF/services/org.apache.shardingsphere.sharding.spi.ShardingAuditAlgorithm
index 95d19f8ea36..b33b70dcd59 100644
--- a/test/e2e/fixture/src/test/resources/META-INF/services/org.apache.shardingsphere.sharding.spi.ShardingAuditAlgorithm
+++ b/test/e2e/fixture/src/test/resources/META-INF/services/org.apache.shardingsphere.sharding.spi.ShardingAuditAlgorithm
@@ -15,4 +15,4 @@
 # limitations under the License.
 #
 
-org.apache.shardingsphere.test.integration.fixture.ITShardingAuditAlgorithmFixture
+org.apache.shardingsphere.test.e2e.fixture.ITShardingAuditAlgorithmFixture