Skip to content

Commit

Permalink
Remove "test_" prefix from the TDML name
Browse files Browse the repository at this point in the history
- When using the new daffodil-tdml-junit API, the JUnit test name needs to
  match the TDML test name. The test_ prefix really isn't need in the
  JUnit test name since we know we're running tests. So remove the
  prefix from the TDML test name
  • Loading branch information
stevedlawrence committed Jan 31, 2025
1 parent 7a73491 commit fe6107c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ limitations under the License.
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
defaultRoundTrip="onePass">

<parserTestCase name="test_$name;format="camel"$_01" root="$name;format="Camel"$" model="$if(namespaced.truthy)$$package;format="packaged"$/$name;format="camel"$/xsd/$endif$$name;format="camel"$.dfdl.xsd">
<parserTestCase name="$name;format="camel"$_01" root="$name;format="Camel"$" model="$if(namespaced.truthy)$$package;format="packaged"$/$name;format="camel"$/xsd/$endif$$name;format="camel"$.dfdl.xsd">
<document>
<documentPart type="file">test_01.$extension$</documentPart>
</document>
Expand Down

0 comments on commit fe6107c

Please sign in to comment.