Skip to content

Commit

Permalink
junit 5.x
Browse files Browse the repository at this point in the history
  • Loading branch information
afk11 committed Jan 17, 2022
1 parent eb8e105 commit 8238452
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ dependencies {
implementation 'mysql:mysql-connector-java:8.0.20'
implementation 'com.zaxxer:HikariCP:3.4.5'
implementation 'org.apache.commons:commons-text:1.8'
testImplementation 'junit:junit:4.13'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.6.0'
}

group = 'hu.dpc.phee'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@
import org.apache.kafka.clients.producer.ProducerConfig;
import org.apache.kafka.clients.producer.ProducerRecord;
import org.apache.kafka.common.serialization.StringSerializer;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;


import java.util.HashMap;
import java.util.Map;
Expand Down Expand Up @@ -137,7 +138,7 @@ public void test() {
}

@Test
@Ignore
@Disabled
public void testSendKafkaMessage() {
Map<String, Object> kafkaProperties = new HashMap<>();

Expand Down

0 comments on commit 8238452

Please sign in to comment.