-
Notifications
You must be signed in to change notification settings - Fork 88
Add functionality to parse source as specified encoding and get result as specified encoding #141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
33e2417
to
9434e4a
Compare
executionOrder="depends,defects" | ||
requireCoverageMetadata="false" | ||
beStrictAboutCoverageMetadata="false" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Running the tests gave errors that these attributes were not allowed.
static::assertSame(3598, \strlen($interpreter->getJson())); | ||
static::assertSame(9383, \strlen($interpreter->getJson(true))); | ||
static::assertSame(3594, \strlen($interpreter->getJson())); | ||
static::assertSame(9379, \strlen($interpreter->getJson(true))); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Before the changes these tests were failing so I adjusted it first
@@ -227,7 +227,7 @@ | |||
"messageTrailer": { | |||
"segmentIdx": 20, | |||
"segmentCode": "UNT", | |||
"segmentGroup": "SG16", | |||
"segmentGroup": "", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Before the changes these tests were failing so I adjusted it first
6ef2f54
to
5d630b4
Compare
Thank you! |
As discussed in #140 we would like to add a feature where you can set the source encoding and also specify the result encoding.