Skip to content

Commit 9ecd7c0

Browse files
Add tracing to help identify the root cause of the failing test
1 parent 08ab5ff commit 9ecd7c0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

dotnet/test/DotNetUnitTest/FileIO/FileIOTests.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
using System.IO;
33
using GeneXus.Configuration;
44
using GeneXus.Printer;
5+
using GeneXus.Services;
56
using GeneXus.Utils;
67
using Xunit;
78

@@ -83,7 +84,8 @@ public void GXDBFilePathTest()
8384
}
8485
catch (Exception ex)
8586
{
86-
Assert.True(false, $"FileName:{newFileName} Error:{ex.Message}");
87+
88+
Assert.True(false, $"FileName:{newFileName} Error:{ex.Message} ExternalProvider:{ServiceFactory.GetExternalProvider()?.GetType().FullName} fileName:{fileName}");
8789
}
8890
}
8991
}

0 commit comments

Comments
 (0)