🐛 Fix bug while searching for the user sid
This commit is contained in:
parent
c7d2a2c4fe
commit
5a460e1ba0
16 changed files with 350 additions and 45 deletions
|
|
@ -0,0 +1,19 @@
|
|||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue