We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e1443a commit b7ab159Copy full SHA for b7ab159
test/FaceRecognitionDotNet.Tests/ImageTest.cs
@@ -11,6 +11,8 @@ public class ImageTest
11
12
private const string ResultDirectory = "Result";
13
14
+ private const string TestImageDirectory = "TestImages";
15
+
16
#endregion
17
18
[Fact]
@@ -25,7 +27,7 @@ public void Save()
25
27
new { Name = "saved.png", Format = ImageFormat.Png },
26
28
};
29
- using (var img = FaceRecognition.LoadImageFile(Path.Combine("TestImages", "obama.jpg")))
30
+ using (var img = FaceRecognition.LoadImageFile(Path.Combine(TestImageDirectory, "obama.jpg")))
31
{
32
var directory = Path.Combine(ResultDirectory, testName);
33
Directory.CreateDirectory(directory);
0 commit comments