Christian Sauer
Christian Sauer
Sample code: ` [DataContract] public class EmailRequest { [DataMember] public string UserId { get; set; } [DataMember] public string TemplateName { get; set; } [DataMember] public Dictionary Variables { get;...
Hello, I need to use a custom container image from a Registry with UserName / Password. Can I use that Image somehow? I did see .WithContainerImage(""), but that has no...
I have a range of objects I want to serialize into one avro - since I need to match the Azure Eventhub Schema I need to store an object per...
I.e. something like this: ``` result .Should() .BeOfType() .Subject.ConsecutiveEvents[0] .Should() .Be(@event.Source); ``` I can replicate the first part easy enough ``` await Assert.That(result).IsTypeOf ``` But how to access the ConsecutiveEvents?
I have a solution with ~5 Unit Test projects and an Integration test Project. I cannot run both at the same time. Therefore I try to filter out the Integration...