Skip to content
Snippets Groups Projects
Commit 8809bb13 authored by Klaus Fischer's avatar Klaus Fischer
Browse files

Added output to tests

parent 2a0c32ae
No related branches found
No related tags found
1 merge request!3Feature/440 mvp net sdk part 1
......@@ -108,13 +108,16 @@ public class SenderTest {
submission.Attachments.Should().HaveCount(attachments.Count);
submission.Id.Should().NotBeNullOrWhiteSpace();
Console.WriteLine(submission.CaseId);
}
[TestCase("0b8e6fbd-62e2-4b6f-b333-5308d82e0a00")]
[TestCase("d2be2027-9368-4c0c-a265-2fdbf7ecd4d9")]
public void GetSubmissionStatus(string caseId) {
var status = (_fluentSender as FluentSender).GetStatusForSubmission(caseId).Result;
status.ForEach(s=>Console.WriteLine(s.Subject));
status.Count.Should().BeGreaterThan(0);
}
[Test]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment