-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from indiv0/tests-states-out-of-order
Add custom deserializer for `States` to handle out of order elements
- Loading branch information
Showing
5 changed files
with
313 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<queryresult success='false' | ||
error='false' | ||
numpods='0' | ||
datatypes='' | ||
timedout='' | ||
timedoutpods='' | ||
timing='4.739' | ||
parsetiming='0.14400000000000002' | ||
parsetimedout='false' | ||
recalculate='' | ||
id='' | ||
host='http://www5b.wolframalpha.com' | ||
server='35' | ||
related='' | ||
version='2.6'> | ||
<languagemsg english='Wolfram|Alpha does not yet support Slovak.' /> | ||
</queryresult> |
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,17 @@ | ||
<states count='5'> | ||
<state name='a' input='a' /> | ||
<statelist count='2' value='b' delimiters=''> | ||
<state name='b1' input='b1' /> | ||
<state name='b2' input='b2' /> | ||
</statelist> | ||
<state name='c' input='c' /> | ||
<statelist count='2' value='d' delimiters=''> | ||
<state name='d1' input='d1' /> | ||
<state name='d2' input='d2' /> | ||
</statelist> | ||
<statelist count='2' value='e' delimiters=''> | ||
<state name='e1' input='e1' /> | ||
<state name='e2' input='e2' /> | ||
</statelist> | ||
<state name='f' input='f' /> | ||
</states> |
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,14 @@ | ||
<states count='3'> | ||
<state name='Show synonym network' | ||
input='Synonyms:WordData__Show synonym network' /> | ||
<statelist count='2' | ||
value='Meanings combined' | ||
delimiters=''> | ||
<state name='Meanings divided' | ||
input='Synonyms:WordData__Meanings divided' /> | ||
<state name='Meanings combined' | ||
input='Synonyms:WordData__Meanings combined' /> | ||
</statelist> | ||
<state name='More' | ||
input='Synonyms:WordData__More' /> | ||
</states> |