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.
16 lines
337 B
16 lines
337 B
1 year ago
|
using Recyclarr.Config.Secrets;
|
||
2 years ago
|
|
||
1 year ago
|
namespace Recyclarr.Tests.Config.Secrets;
|
||
2 years ago
|
|
||
|
[TestFixture]
|
||
|
public class SecretNotFoundExceptionTest
|
||
|
{
|
||
|
[Test]
|
||
|
public void Properties_get_initialized()
|
||
|
{
|
||
|
var sut = new SecretNotFoundException(15, "key");
|
||
|
sut.Line.Should().Be(15);
|
||
|
sut.SecretKey.Should().Be("key");
|
||
|
}
|
||
|
}
|