19 lines
No EOL
433 B
C#
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);
|
|
}
|
|
}
|
|
} |