We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ed1c4d commit 5159d5aCopy full SHA for 5159d5a
1 file changed
tests/Testing.Databases.SqlServer.Tests/SqlServerTest.cs
@@ -130,6 +130,9 @@ public async Task CreateAndDeleteAsync_WithSpecificDataFileName()
130
var table = await server.Master.ExecuteQueryAsync("SELECT * FROM [sys].[databases] WHERE [name] = 'CreateAndDeleteDB_WithSpecificDataFileNameAsync'");
131
table.Rows.Should().HaveCount(1);
132
133
+ var debug = string.Join(";", Directory.GetFiles(otherDataPath.Path));
134
+ debug.Should().BeNull();
135
+
136
// Check the location of the database
137
File.Exists(Path.Combine(otherDataPath.Path, "TheSpecificDataFileNameAsync.mdf")).Should().BeTrue();
138
File.Exists(Path.Combine(otherDataPath.Path, "TheSpecificDataFileNameAsync_log.ldf")).Should().BeTrue();
0 commit comments