[jira] [Updated] (NIFI-11600) Combine two test classes by the name of TestFormatUtils into one class and use Junit 5 constructs

2023-05-25 Thread David Handermann (Jira)


 [ 
https://issues.apache.org/jira/browse/NIFI-11600?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

David Handermann updated NIFI-11600:

Fix Version/s: 2.0.0
   Resolution: Fixed
   Status: Resolved  (was: Patch Available)

> Combine two test classes by the name of TestFormatUtils into one class and 
> use Junit 5 constructs
> -
>
> Key: NIFI-11600
> URL: https://issues.apache.org/jira/browse/NIFI-11600
> Project: Apache NiFi
>  Issue Type: Improvement
>Reporter: Daniel Stieglitz
>Assignee: Daniel Stieglitz
>Priority: Minor
> Fix For: 2.0.0
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> With the code changes done in NIFI-11528 there are now two test classes named
> {code:java}
> TestFormatUtils
> {code} 
> The former one is in
> {code:java}
> nifi-commons/nifi-utils/src/test/java/org/apache/nifi/processor
> {code}
> while the new one is in
> {code:java}
> nifi-commons/nifi-utils/src/test/java/org/apache/nifi/util
> {code}
> The latter one is in the correct package as 
> {code:java}
> FormatUtils
> {code}
>  is located in package 
> {code:java}
> org.apache.nifi.util
> {code}
> The aim of this ticket is to combine the two test classes into one in the 
> correct package and to upgrade the unit tests in the former class to use 
> JUnit constructs e.g. Paramaterized tests.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (NIFI-11600) Combine two test classes by the name of TestFormatUtils into one class and use Junit 5 constructs

2023-05-25 Thread Daniel Stieglitz (Jira)


 [ 
https://issues.apache.org/jira/browse/NIFI-11600?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Daniel Stieglitz updated NIFI-11600:

Status: Patch Available  (was: Open)

> Combine two test classes by the name of TestFormatUtils into one class and 
> use Junit 5 constructs
> -
>
> Key: NIFI-11600
> URL: https://issues.apache.org/jira/browse/NIFI-11600
> Project: Apache NiFi
>  Issue Type: Improvement
>Reporter: Daniel Stieglitz
>Assignee: Daniel Stieglitz
>Priority: Minor
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> With the code changes done in NIFI-11528 there are now two test classes named
> {code:java}
> TestFormatUtils
> {code} 
> The former one is in
> {code:java}
> nifi-commons/nifi-utils/src/test/java/org/apache/nifi/processor
> {code}
> while the new one is in
> {code:java}
> nifi-commons/nifi-utils/src/test/java/org/apache/nifi/util
> {code}
> The latter one is in the correct package as 
> {code:java}
> FormatUtils
> {code}
>  is located in package 
> {code:java}
> org.apache.nifi.util
> {code}
> The aim of this ticket is to combine the two test classes into one in the 
> correct package and to upgrade the unit tests in the former class to use 
> JUnit constructs e.g. Paramaterized tests.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (NIFI-11600) Combine two test classes by the name of TestFormatUtils into one class and use Junit 5 constructs

2023-05-25 Thread Daniel Stieglitz (Jira)


 [ 
https://issues.apache.org/jira/browse/NIFI-11600?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Daniel Stieglitz updated NIFI-11600:

Description: 
With the code changes done in NIFI-11528 there are now two test classes named
{code:java}
TestFormatUtils
{code} 
The former one is in
{code:java}
nifi-commons/nifi-utils/src/test/java/org/apache/nifi/processor
{code}
while the new one is in
{code:java}
nifi-commons/nifi-utils/src/test/java/org/apache/nifi/util
{code}
The latter one is in the correct package as 
{code:java}
FormatUtils
{code}
 is located in package 
{code:java}
org.apache.nifi.util
{code}

The aim of this ticket is to combine the two test classes into one in the 
correct package and to upgrade the unit tests in the former class to use JUnit 
constructs e.g. Paramaterized tests.

  was:
With the code changes done in NIFI-11528 there are now two test classes named
{code:java}
TestFormatUtils
{code} 
The former one is in
{code:java}
nifi-commons/nifi-utils/src/test/java/org/apache/nifi/processor
{code}
while the new one is in
{code:java}
nifi-commons/nifi-utils/src/test/java/org/apache/nifi/util
{code}
The latter one is in the correct package as 
{code:java}
FormatUtils
{code}
 is located in package org.apache.nifi.util
The aim of this ticket is to combine the two test classes into one in the 
correct package and to upgrade the unit tests in the former class to use JUnit 
constructs e.g. Paramaterized tests.


> Combine two test classes by the name of TestFormatUtils into one class and 
> use Junit 5 constructs
> -
>
> Key: NIFI-11600
> URL: https://issues.apache.org/jira/browse/NIFI-11600
> Project: Apache NiFi
>  Issue Type: Improvement
>Reporter: Daniel Stieglitz
>Assignee: Daniel Stieglitz
>Priority: Minor
>
> With the code changes done in NIFI-11528 there are now two test classes named
> {code:java}
> TestFormatUtils
> {code} 
> The former one is in
> {code:java}
> nifi-commons/nifi-utils/src/test/java/org/apache/nifi/processor
> {code}
> while the new one is in
> {code:java}
> nifi-commons/nifi-utils/src/test/java/org/apache/nifi/util
> {code}
> The latter one is in the correct package as 
> {code:java}
> FormatUtils
> {code}
>  is located in package 
> {code:java}
> org.apache.nifi.util
> {code}
> The aim of this ticket is to combine the two test classes into one in the 
> correct package and to upgrade the unit tests in the former class to use 
> JUnit constructs e.g. Paramaterized tests.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)