kafka-connect-jdbc-sink icon indicating copy to clipboard operation
kafka-connect-jdbc-sink copied to clipboard

Add test dependencies and expand coverage

Open iamgollum opened this issue 5 years ago • 0 comments

Obervation

Version 1.0 initial commit had no tests accompanied with it.

Add dependencies:

<dependency>
    <groupId>org.junit.jupiter</groupId>
    <artifactId>junit-jupiter-engine</artifactId>
    <version>5.6.2</version>
    <scope>test</scope>
</dependency>

<dependency>
     <groupId>org.mockito</groupId>
     <artifactId>mockito-core</artifactId>
     <version>3.3.3</version>
<scope>test</scope>

Action Item

Add tests at minimum for:

[x] DatabaseType#fromJdbcUrl [ ] DatabaseFactory [ ] JDBCWriter

iamgollum avatar Apr 20 '20 13:04 iamgollum