From 400d013944ae35f7eeb923f310135c66252cf9c8 Mon Sep 17 00:00:00 2001 From: dbuechel Date: Tue, 26 Feb 2019 10:51:02 +0100 Subject: [PATCH] SEBWIN-296: Forgot unit test condition for runtime host. --- .../Communication/RuntimeHostTests.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/SafeExamBrowser.Runtime.UnitTests/Communication/RuntimeHostTests.cs b/SafeExamBrowser.Runtime.UnitTests/Communication/RuntimeHostTests.cs index b498bf01..9b0f95fd 100644 --- a/SafeExamBrowser.Runtime.UnitTests/Communication/RuntimeHostTests.cs +++ b/SafeExamBrowser.Runtime.UnitTests/Communication/RuntimeHostTests.cs @@ -288,6 +288,7 @@ namespace SafeExamBrowser.Runtime.UnitTests.Communication sut.Send(new MessageBoxReplyMessage(Guid.Empty, MessageBoxResult.Cancel) { CommunicationToken = token }); sut.Send(new PasswordReplyMessage(Guid.Empty, false, "") { CommunicationToken = token }); sut.Send(new ReconfigurationMessage("") { CommunicationToken = token }); + sut.Disconnect(new DisconnectionMessage { CommunicationToken = token }); } private class TestMessage : Message { };