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

Submission without data was possible in Test

parent a0a9cf24
No related branches found
No related tags found
1 merge request!15Feature/580 encrypted data
......@@ -83,6 +83,7 @@ public class SenderTests {
public void VerifyMetaData_ValidData_Fine() {
// Arrange
var submission = new Submission();
submission.Data = @"{""data"":""value""}";
submission.ServiceType.Identifier = leikaKey;
// Act
......@@ -98,6 +99,7 @@ public class SenderTests {
public void VerifyMetaData_MissingLeikaKey_ThrowsAnError() {
// Arrange
var submission = new Submission();
submission.Data = @"{""data"":""value""}";
// Act
var metadata = Sender.CreateMetadata(submission);
......
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