[test] Move AssertUtils to flink-connector-debezium

release-1.0
Jark Wu 5 years ago
parent ffae96de9d
commit ab3a2ca1a6
No known key found for this signature in database
GPG Key ID: 85BACB5AEFAE3202

@ -48,6 +48,13 @@ under the License.
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-test-utils_${scala.binary.version}</artifactId>
<version>${flink.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>

@ -1,13 +1,13 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* or more contributor license agreements.See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* 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
* with the License.You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
* 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,
@ -16,7 +16,7 @@
* limitations under the License.
*/
package com.alibaba.ververica.cdc.connectors.mysql.utils;
package com.alibaba.ververica.cdc.debezium.utils;
import io.debezium.data.Envelope;
import org.apache.kafka.connect.data.Struct;

@ -56,9 +56,9 @@ import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.Semaphore;
import java.util.concurrent.TimeUnit;
import static com.alibaba.ververica.cdc.connectors.mysql.utils.AssertUtils.assertDelete;
import static com.alibaba.ververica.cdc.connectors.mysql.utils.AssertUtils.assertInsert;
import static com.alibaba.ververica.cdc.connectors.mysql.utils.AssertUtils.assertUpdate;
import static com.alibaba.ververica.cdc.debezium.utils.AssertUtils.assertDelete;
import static com.alibaba.ververica.cdc.debezium.utils.AssertUtils.assertInsert;
import static com.alibaba.ververica.cdc.debezium.utils.AssertUtils.assertUpdate;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;

Loading…
Cancel
Save