File tree 1 file changed +3
-3
lines changed
Hexa.NET.ImGui.Widgets.Tests
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
namespace Hexa . NET . ImGui . Widgets . Tests
2
2
{
3
- using Hexa . NET . ImGui . Widgets . Dialogs ;
3
+ using Hexa . NET . ImGui . Widgets . IO ;
4
4
5
5
[ TestFixture ]
6
6
public unsafe class FileUtilitiesTests
@@ -12,7 +12,7 @@ public void EnumerateEntriesOSXTest()
12
12
// Arrange
13
13
string testDirectory = AppDomain . CurrentDomain . BaseDirectory ;
14
14
15
- foreach ( var entry in FileUtilities . EnumerateEntriesOSX ( testDirectory , "*" , SearchOption . TopDirectoryOnly ) )
15
+ foreach ( var entry in FileUtils . OSX . EnumerateEntries ( testDirectory , "*" , SearchOption . TopDirectoryOnly ) )
16
16
{
17
17
var path = entry . Path . ToString ( ) ;
18
18
string fileName = Path . GetFileName ( path ) ;
@@ -34,7 +34,7 @@ public void EnumerateEntriesWinTest()
34
34
// Arrange
35
35
string testDirectory = AppDomain . CurrentDomain . BaseDirectory ;
36
36
37
- foreach ( var entry in FileUtilities . EnumerateEntriesWin ( testDirectory , "*" , SearchOption . TopDirectoryOnly ) )
37
+ foreach ( var entry in FileUtils . Win . EnumerateEntries ( testDirectory , "*" , SearchOption . TopDirectoryOnly ) )
38
38
{
39
39
var path = entry . Path . ToString ( ) ;
40
40
string fileName = Path . GetFileName ( path ) ;
You can’t perform that action at this time.
0 commit comments