|
15 | 15 | */
|
16 | 16 | package com.github.shyiko.mysql.binlog;
|
17 | 17 |
|
18 |
| -import com.github.shyiko.mysql.binlog.event.QueryEventData; |
19 |
| -import com.github.shyiko.mysql.binlog.event.XidEventData; |
20 |
| -import com.github.shyiko.mysql.binlog.event.deserialization.EventDeserializer; |
21 |
| -import org.testng.annotations.AfterClass; |
22 |
| -import org.testng.annotations.BeforeClass; |
23 |
| -import org.testng.annotations.Test; |
| 18 | +import static org.testng.Assert.assertNotEquals; |
| 19 | +import static org.testng.AssertJUnit.assertNotNull; |
24 | 20 |
|
25 | 21 | import java.sql.ResultSet;
|
26 | 22 | import java.sql.SQLException;
|
27 | 23 | import java.sql.Statement;
|
28 | 24 | import java.util.concurrent.TimeUnit;
|
29 | 25 |
|
30 |
| -import static org.testng.Assert.assertNotEquals; |
31 |
| -import static org.testng.AssertJUnit.assertNotNull; |
| 26 | +import org.testng.annotations.AfterClass; |
| 27 | +import org.testng.annotations.BeforeClass; |
| 28 | +import org.testng.annotations.Test; |
| 29 | + |
| 30 | +import com.github.shyiko.mysql.binlog.event.QueryEventData; |
| 31 | +import com.github.shyiko.mysql.binlog.event.XidEventData; |
| 32 | +import com.github.shyiko.mysql.binlog.event.deserialization.EventDeserializer; |
32 | 33 |
|
33 | 34 | /**
|
34 | 35 | * @author <a href="https://github.com/osheroff">Ben Osheroff</a>
|
35 | 36 | */
|
36 |
| -public class BinaryLogClientGTIDIntegrationTest extends BinaryLogClientIntegrationTest { |
| 37 | +public class BinaryLogClientGTIDIntegrationTest extends BinaryLogClientIntegrationTestBase { |
37 | 38 |
|
38 | 39 | @BeforeClass
|
39 | 40 | private void enableGTID() throws SQLException {
|
|
0 commit comments