Skip to content

Commit

Permalink
failing unit test for issue phatboyg#58 with condition logic in place
Browse files Browse the repository at this point in the history
fixed test issue

add more conditions to X12 maps

added conditional logic to several X12 maps

created more conditions in maps and created failing unit test for issue phatboyg#65

added new failing test for issue phatboyg#65

updated readme and added tests for issue phatboyg#65

fixed gitter link

added appveyor badge

added nuget version badge

added appveyor test status badge

added appveyor test status badge

added appveyor test status badge

modified the readme

added license section to readme

modified readme

added more stuff to readme

modified readme

modified readme
  • Loading branch information
ahives committed Oct 10, 2018
1 parent 010ac95 commit 3cab0ad
Show file tree
Hide file tree
Showing 83 changed files with 2,408 additions and 238 deletions.
506 changes: 503 additions & 3 deletions README.md

Large diffs are not rendered by default.

11 changes: 11 additions & 0 deletions src/Machete.HL7.Tests/QueryTests/AdvancedQueryTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,17 @@ select new
};
});

foreach (var orc in result.Result.Tests)
{
if (orc.ORC.PlacerGroupNumber.Select(x => x.EntityIdentifier).IsEqualTo("X0934N"))
{
string placerGroupNumber = orc.ORC
.PlacerGroupNumber
.Select(x => x.EntityIdentifier)
.ValueOrDefault();
}
}

Assert.That(result.HasResult, Is.True);
Assert.AreEqual(3, result.Result.Tests.Count);
Assert.AreEqual(4, result.Result.Notes.Count);
Expand Down
Loading

0 comments on commit 3cab0ad

Please sign in to comment.