We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a710fa commit 3ecd235Copy full SHA for 3ecd235
OasysGHTests/Helpers/ResolverTest.cs
@@ -6,14 +6,16 @@
6
using Rhino.Runtime;
7
using Microsoft.Win32;
8
using System.Globalization;
9
+using Xunit.Abstractions;
10
11
namespace OasysGHTests.Helpers {
12
public class ResolverTest {
13
+
14
[Fact]
15
public void ShouldReturnAValidPath() {
16
RhinoResolver.RhinoMajorVersion = -1;
17
string directory = RhinoResolver.FindRhinoSystemDirectory();
- Assert.True(File.Exists(directory));
18
+ Assert.True(Directory.Exists(directory));
19
}
20
21
0 commit comments