AmagnoVirtualPrinter/Tests/AmagnoVirtualPrinter.Utils.UnitTests/RegistryRepositoryTests.cs
2023-05-30 17:22:56 +02:00

19 lines
No EOL
433 B
C#

using NUnit.Framework;
namespace AmagnoVirtualPrinter.Utils.UnitTests
{
[TestFixture]
public class RegistryRepositoryTests
{
[Test]
public void TryGetGhostscriptPath_FindsGhostScriptPath()
{
var sut = new RegistryRepository();
var result = sut.TryGetGhostscriptPath(out var path);
Assert.True(result);
Assert.IsNotNull(path);
}
}
}