You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
recyclarr/tests/Recyclarr.Tests/Config/EnvironmentVariables/EnvironmentVariableNotDefin...

16 lines
407 B

using Recyclarr.Config.EnvironmentVariables;
namespace Recyclarr.Tests.Config.EnvironmentVariables;
[TestFixture]
public class EnvironmentVariableNotDefinedExceptionTest
{
[Test]
public void Properties_get_initialized()
{
var sut = new EnvironmentVariableNotDefinedException(15, "key");
sut.Line.Should().Be(15);
sut.EnvironmentVariableName.Should().Be("key");
}
}