Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 2693fb8

Browse files
committed
Kinda need to know which tests are running at what time in the log
1 parent c48a2b3 commit 2693fb8

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/tests/IntegrationTests/Download/DownloadTaskTests.cs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ public override void OnSetup()
2424
[Test]
2525
public async Task TestDownloadTask()
2626
{
27+
Logger.Info("Starting Test: TestDownloadTask");
28+
2729
var fileSystem = Environment.FileSystem;
2830

2931
var downloadPath = TestBasePath.Combine("5MB.zip");
@@ -60,6 +62,8 @@ public async Task TestDownloadTask()
6062
[Test]
6163
public void TestDownloadFailure()
6264
{
65+
Logger.Info("Starting Test: TestDownloadFailure");
66+
6367
var fileSystem = Environment.FileSystem;
6468

6569
var downloadPath = TestBasePath.Combine("5MB.zip");
@@ -88,6 +92,8 @@ public void TestDownloadFailure()
8892
[Test]
8993
public void TestDownloadTextTask()
9094
{
95+
Logger.Info("Starting Test: TestDownloadTextTask");
96+
9197
var fileSystem = Environment.FileSystem;
9298

9399
var downloadTask = new DownloadTextTask(TaskManager.Token, fileSystem,
@@ -101,6 +107,8 @@ public void TestDownloadTextTask()
101107
[Test]
102108
public void TestDownloadTextFailure()
103109
{
110+
Logger.Info("Starting Test: TestDownloadTextFailure");
111+
104112
var fileSystem = Environment.FileSystem;
105113

106114
var downloadTask = new DownloadTextTask(TaskManager.Token, fileSystem,
@@ -122,6 +130,8 @@ public void TestDownloadTextFailure()
122130
[Test]
123131
public void TestDownloadFileAndHash()
124132
{
133+
Logger.Info("Starting Test: TestDownloadFileAndHash");
134+
125135
var fileSystem = Environment.FileSystem;
126136

127137
var gitArchivePath = TestBasePath.Combine("git.zip");
@@ -177,6 +187,8 @@ public void TestDownloadFileAndHash()
177187
[Test]
178188
public void TestDownloadShutdownTimeWhenInterrupted()
179189
{
190+
Logger.Info("Starting Test: TestDownloadShutdownTimeWhenInterrupted");
191+
180192
var fileSystem = Environment.FileSystem;
181193

182194
var gitArchivePath = TestBasePath.Combine("git.zip");

0 commit comments

Comments
 (0)