Skip to content

Commit a01cbd0

Browse files
committed
Files are little organized
1 parent a5890aa commit a01cbd0

File tree

19 files changed

+17
-17
lines changed

19 files changed

+17
-17
lines changed

db/src/test/resources/data-integrity-testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apiExecutor:
44
- reportTitle: "Low code/No Data Integrity Testing"
55
outputJsonDir: target/idaithalam
66
env: test
7-
outputDir: target/DB
7+
outputDir: DB
88
inputExcel: db/data-integrity-testing.xlsx
99
cucumblanProperties:
1010
employee.cucumblan.jdbc.driver-class-name: org.h2.Driver
121 Bytes
Binary file not shown.
4 Bytes
Binary file not shown.

rest-db-kafka/src/test/java/io/virtualan/cucumblan/message/typeimpl/JSONType.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ public JSONType(String id, String body) {
3030
public static void reload() {
3131
try {
3232
java.io.InputStream stream = Thread.currentThread().getContextClassLoader()
33-
.getResourceAsStream("json-messagetype.properties");
33+
.getResourceAsStream("message-type/json-messagetype.properties");
3434
if (stream == null) {
3535
stream = io.virtualan.cucumblan.props.ApplicationConfiguration.class.getClassLoader()
36-
.getResourceAsStream("json-messagetype.properties");
36+
.getResourceAsStream("message-type/json-messagetype.properties");
3737
}
3838
if (stream != null) {
3939
jsonMessageTypeMapper.load(stream);

rest-db-kafka/src/test/java/io/virtualan/cucumblan/message/typeimpl/ProtobufType.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ public ProtobufType(String id, String body, byte[] originalBody) {
3434
public static void reload() {
3535
try {
3636
java.io.InputStream stream = Thread.currentThread().getContextClassLoader()
37-
.getResourceAsStream("proto-messagetype.properties");
37+
.getResourceAsStream("message-type/proto-messagetype.properties");
3838
if (stream == null) {
3939
stream = io.virtualan.cucumblan.props.ApplicationConfiguration.class.getClassLoader()
40-
.getResourceAsStream("proto-messagetype.properties");
40+
.getResourceAsStream("message-type/proto-messagetype.properties");
4141
}
4242
if (stream != null) {
4343
protoMessageTypeMapper.load(stream);

rest-db-kafka/src/test/java/io/virtualan/test/KafkaTestPlanExecutor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public class KafkaTestPlanExecutor {
88
@org.testng.annotations.Test
99
public void execute_orderEvent_workflow() {
1010
try {
11-
boolean isSuccess = VirtualanTestPlanExecutor.invoke("work-flow.yaml");
11+
boolean isSuccess = VirtualanTestPlanExecutor.invoke("workflow/work-flow.yaml");
1212
org.junit.Assert.assertTrue(isSuccess);
1313

1414
} catch (Exception e) {
@@ -19,7 +19,7 @@ public void execute_orderEvent_workflow() {
1919
@org.testng.annotations.Test
2020
public void execute_orderEvent_protobuff_workflow() {
2121
try {
22-
boolean isSuccess = VirtualanTestPlanExecutor.invoke("work-flow-proto.yaml");
22+
boolean isSuccess = VirtualanTestPlanExecutor.invoke("workflow/work-flow-proto.yaml");
2323
org.junit.Assert.assertTrue(isSuccess);
2424

2525
} catch (Exception e) {
-11.4 KB
Binary file not shown.
-9.93 KB
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)