Skip to content

Commit

Permalink
KOGITO-3540 DMN wire DT static analysis to Kogito Codegen (apache#379)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarilabs committed Oct 5, 2020
1 parent aad3647 commit bd20a1d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Expand Up @@ -144,7 +144,7 @@
<dmn:text>SupremeDirector</dmn:text>
</dmn:inputExpression>
</dmn:input>
<dmn:output id="_6CBC7A80-E485-425E-81F9-570E96A64E2E" typeRef="boolean"/>
<dmn:output id="_6CBC7A80-E485-425E-81F9-570E96A64E2E"/>
<dmn:rule id="_E11830D2-F640-4E6B-9680-E28FAF342951">
<dmn:inputEntry id="_74F3C294-5DCB-4B9A-9271-4972F1612630">
<dmn:text>"Yes"</dmn:text>
Expand Down
Expand Up @@ -27,7 +27,7 @@
public class LoanEligibilityTest {

@Test
public void testEvaluateTrafficViolation() {
public void testEvaluateLoanEligibility() {
given()
.body("{" +
"\"Client\": " +
Expand All @@ -46,7 +46,7 @@ public void testEvaluateTrafficViolation() {
}

@Test
public void testMetricsTrafficViolation() {
public void testMetricsLoanEligibility() {
given()
.when()
.get("/metrics")
Expand Down
2 changes: 1 addition & 1 deletion dmn-tracing-quarkus/src/main/resources/LoanEligibility.dmn
Expand Up @@ -144,7 +144,7 @@
<dmn:text>SupremeDirector</dmn:text>
</dmn:inputExpression>
</dmn:input>
<dmn:output id="_6CBC7A80-E485-425E-81F9-570E96A64E2E" typeRef="boolean"/>
<dmn:output id="_6CBC7A80-E485-425E-81F9-570E96A64E2E"/>
<dmn:rule id="_E11830D2-F640-4E6B-9680-E28FAF342951">
<dmn:inputEntry id="_74F3C294-5DCB-4B9A-9271-4972F1612630">
<dmn:text>"Yes"</dmn:text>
Expand Down
Expand Up @@ -55,7 +55,7 @@ public class LoanEligibilityTest {
private String kafkaBootstrapServers;

@Test
public void testEvaluateTrafficViolation() throws InterruptedException {
public void testEvaluateLoanEligibility() throws InterruptedException {
kafkaClient = new KafkaClient(kafkaBootstrapServers);

final CountDownLatch countDownLatch = new CountDownLatch(1);
Expand Down

0 comments on commit bd20a1d

Please sign in to comment.