Skip to content

Commit 3b1eb69

Browse files
committed
Remove unused file existence test and unnecessary using directive
1 parent 5a6f138 commit 3b1eb69

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

tests/Demo.Tests/Tests.cs

-13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System;
2-
using System.IO;
32
using System.Threading.Tasks;
43
using Azure.Messaging.ServiceBus;
54
using Demo.Tests.Config;
@@ -37,16 +36,4 @@ public async Task Demo_test()
3736
// Assert
3837
Assert.Equal(message, messageReceived);
3938
}
40-
41-
[Fact]
42-
public void Is_file_Exists()
43-
{
44-
// Arrange && Act
45-
var path = Path.GetFullPath("./Config/ServiceBusEmulator.Config.json");
46-
47-
48-
// Assert
49-
_output.WriteLine($"Path: {path} -> Exists: {File.Exists(path)}");
50-
Assert.True(File.Exists(path));
51-
}
5239
}

0 commit comments

Comments
 (0)