diff --git a/Testing/CASLTests/Exceptions/StringNullOrEmptyExceptionTests.cs b/Testing/CASLTests/Exceptions/StringNullOrEmptyExceptionTests.cs index 6b2c6d69..2817d65e 100644 --- a/Testing/CASLTests/Exceptions/StringNullOrEmptyExceptionTests.cs +++ b/Testing/CASLTests/Exceptions/StringNullOrEmptyExceptionTests.cs @@ -29,8 +29,10 @@ public void Ctor_WhenInvokedWithNoParam_CorrectlySetsMessage() [Fact] public void Ctor_WhenInvokedWithSingleMessageParam_CorrectlySetsMesage() { - // Act + // Arrange var exceptionMessage = "test-message"; + + // Act var exception = new StringNullOrEmptyException(exceptionMessage); // Assert @@ -53,4 +55,4 @@ public void Ctor_WhenInvokedWithMessageAndInnerException_ThrowsException() deviceException.Message.Should().Be(exceptionMessage); } #endregion -} \ No newline at end of file +} diff --git a/Testing/CASLTests/Exceptions/UnknownPlatformExceptionTests.cs b/Testing/CASLTests/Exceptions/UnknownPlatformExceptionTests.cs index 0c94ccbe..5468ab51 100644 --- a/Testing/CASLTests/Exceptions/UnknownPlatformExceptionTests.cs +++ b/Testing/CASLTests/Exceptions/UnknownPlatformExceptionTests.cs @@ -29,8 +29,10 @@ public void Ctor_WhenInvokedWithNoParam_CorrectlySetsMessage() [Fact] public void Ctor_WhenInvokedWithSingleMessageParam_CorrectlySetsMesage() { - // Act + // Arrange var exceptionMessage = "test-message"; + + // Act var exception = new UnknownPlatformException(exceptionMessage); // Assert @@ -53,4 +55,4 @@ public void Ctor_WhenInvokedWithMessageAndInnerException_ThrowsException() deviceException.Message.Should().Be(exceptionMessage); } #endregion -} \ No newline at end of file +}