forked from indice-co/EDI.Net
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#Add - Writes Enum as Text when Alphanumeric Picture is Provided
When setting an alphanumeric picture to X(n), then automatically its gonna translate to Enum Name, not the integer. Also, two test cases were provided in EdiTextWriterTests.cs. This Implementation need to be analyzed because of changes in the ConvertUtils.cs, maybe we need to change de approach to some code that Add Function not change the function. This can be addressed to Issue indice-co#183
- Loading branch information
1 parent
f1b44a1
commit d7146da
Showing
5 changed files
with
56 additions
and
5 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
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
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace indice.Edi.Tests.Models | ||
{ | ||
public enum TestEnumWriter | ||
{ | ||
AAA = 1, BBB = 2 | ||
} | ||
} |