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/src/Recyclarr.TrashLib.Tests/Config/EnvironmentVariables/EnvironmentVariableNotDefin...

17 lines
461 B

using Recyclarr.TrashLib.Config.EnvironmentVariables;
namespace Recyclarr.TrashLib.Tests.Config.EnvironmentVariables;
[TestFixture]
[Parallelizable(ParallelScope.All)]
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");
}
}