Skip to content

Commit

Permalink
Add more tests in embulkTest
Browse files Browse the repository at this point in the history
  • Loading branch information
dmikurube committed Sep 11, 2024
1 parent a69b6c0 commit 09a1a64
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/embulkTest/java/org/embulk/junit5/example/TestExample.java

This file was deleted.

17 changes: 17 additions & 0 deletions src/embulkTest/java/org/embulk/junit5/example/TestExample1.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package org.embulk.junit5.example;

import static org.junit.jupiter.api.Assertions.assertEquals;

import org.embulk.junit5.api.EmbulkPluginTest;

public class TestExample1 {
@EmbulkPluginTest
public void testExample1_1() {
assertEquals(0, 1 - 1);
}

@EmbulkPluginTest
public void testExample1_2() {
assertEquals(0, 1 - 1);
}
}
17 changes: 17 additions & 0 deletions src/embulkTest/java/org/embulk/junit5/example/TestExample2.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package org.embulk.junit5.example;

import static org.junit.jupiter.api.Assertions.assertEquals;

import org.embulk.junit5.api.EmbulkPluginTest;

public class TestExample2 {
@EmbulkPluginTest
public void testExample2_1() {
assertEquals(0, 1 - 1);
}

@EmbulkPluginTest
public void testExample2_2() {
assertEquals(0, 1 - 1);
}
}

0 comments on commit 09a1a64

Please sign in to comment.