-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extended unit tests + implemented fix for duplicate name check on mat…
…rixes vs array + write (#52)
- Loading branch information
1 parent
4b6445c
commit 597c31e
Showing
4 changed files
with
82 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 changes: 42 additions & 15 deletions
57
...ests/Protocol/Params/Param/Name/CheckNameTag/Samples/Validate/Invalid/DuplicatedValue.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,54 @@ | ||
<Protocol xmlns="http://www.skyline.be/validatorProtocolUnitTest"> | ||
|
||
<Params> | ||
<Param id="100"> | ||
<Name>SameName</Name> | ||
<Param id="100"> | ||
<Name>Duplicate_2Read</Name> | ||
<Type>read</Type> | ||
</Param> | ||
<Param id="101"> | ||
<Name>Duplicate_2Read</Name> | ||
<Type>read</Type> | ||
</Param> | ||
|
||
<Param id="200"> | ||
<Name>Duplicate_2Write</Name> | ||
<Type>write</Type> | ||
</Param> | ||
<Param id="201"> | ||
<Name>Duplicate_2Write</Name> | ||
<Type>write</Type> | ||
</Param> | ||
|
||
<Param id="300"> | ||
<Name>Duplicate_2Read_1Write</Name> | ||
<Type>read</Type> | ||
</Param> | ||
<Param id="150"> | ||
<Name>SameName</Name> | ||
<Param id="350"> | ||
<Name>Duplicate_2Read_1Write</Name> | ||
<Type>write</Type> | ||
</Param> | ||
<Param id="101"> | ||
<Name>SameName</Name> | ||
<Type>read</Type> | ||
</Param> | ||
|
||
<Param id="200"> | ||
<Name>SameName3</Name> | ||
<Type>read</Type> | ||
</Param> | ||
<Param id="201"> | ||
<Name>SameName3</Name> | ||
<Param id="301"> | ||
<Name>Duplicate_2Read_1Write</Name> | ||
<Type>read</Type> | ||
</Param> | ||
|
||
<Param id="400"> | ||
<Name>Duplicate_1Read_1Table</Name> | ||
<Type>read</Type> | ||
</Param> | ||
<Param id="401"> | ||
<Name>Duplicate_1Read_1Table</Name> | ||
<Type>array</Type> | ||
</Param> | ||
|
||
<Param id="500"> | ||
<Name>Duplicate_1Write_1Table</Name> | ||
<Type>write</Type> | ||
</Param> | ||
<Param id="501"> | ||
<Name>Duplicate_1Write_1Table</Name> | ||
<Type>array</Type> | ||
</Param> | ||
</Params> | ||
|
||
</Protocol> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters