Skip to content

Commit 280eb5c

Browse files
committed
Updated tests
1 parent 5b15d9c commit 280eb5c

File tree

12 files changed

+146
-9
lines changed

12 files changed

+146
-9
lines changed

.all-contributorsrc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,7 @@
5252
"avatar_url": "https://avatars2.githubusercontent.com/u/11257605?v=4",
5353
"profile": "https://github.com/Aleksey-Nikonov",
5454
"contributions": [
55-
"ideas",
56-
"code"
55+
"ideas"
5756
]
5857
}
5958
],

CovidSharp/.vs/CovidSharp/v15/.suo

82 KB
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

CovidSharp/CovidSharpTest/UnitTest1.cs

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public void TestLatestConfirmed()
1616
var ActualLatestConfirmed = data.LatestConfirmed();
1717

1818
//Insert here the current confirmed numbers in the API
19-
var ExpectedLatestConfirmed = "1272115";
19+
var ExpectedLatestConfirmed = "1345048";
2020

2121
//Checks if the two values are equal
2222
Assert.AreEqual(ExpectedLatestConfirmed,ActualLatestConfirmed);
@@ -42,7 +42,7 @@ public void TestLatestDeaths()
4242
var ActualLatestDeaths = data.LatestDeaths();
4343

4444
//Insert here the current deaths numbers in the API
45-
var ExpectedLatestDeaths = "69374";
45+
var ExpectedLatestDeaths = "74565";
4646

4747
//Checks if the two values are equal
4848
Assert.AreEqual(ExpectedLatestDeaths, ActualLatestDeaths);
@@ -55,7 +55,7 @@ public void TestFromCountryCodeConfirmed()
5555
var ActualLatestConfirmed = data.FromCountryCodeConfirmed("DK");
5656

5757
//Insert here the current confirmed numbers in the API
58-
var ExpectedLatestConfirmed = "4561";
58+
var ExpectedLatestConfirmed = "4875";
5959

6060
Assert.AreEqual(ExpectedLatestConfirmed, ActualLatestConfirmed);
6161
}
@@ -79,7 +79,7 @@ public void TestFromCountryCodeDeaths()
7979
var ActualLatestDeaths = data.FromCountryCodeDeaths("DK");
8080

8181
//Insert here the current deaths numbers in the API
82-
var ExpectedLatestDeaths = "179";
82+
var ExpectedLatestDeaths = "187";
8383

8484
Assert.AreEqual(ExpectedLatestDeaths, ActualLatestDeaths);
8585
}
@@ -103,7 +103,7 @@ public void TestFromCountryNameConfirmed()
103103
var ActualLatestConfirmed = data.FromCountryNameConfirmed("Denmark");
104104

105105
//Insert here the current confirmed numbers in the API
106-
var ExpectedLatestConfirmed = "4561";
106+
var ExpectedLatestConfirmed = "4875";
107107

108108
Assert.AreEqual(ExpectedLatestConfirmed, ActualLatestConfirmed);
109109
}
@@ -120,6 +120,18 @@ public void TestFromCountryNameRecovered()
120120
Assert.AreEqual(ExpectedLatestRecovered, ActualLatestRecovered);
121121
}
122122

123+
[TestMethod]
124+
public void TestFromCountryNameDeaths()
125+
{
126+
//Actual Latest deaths numbers
127+
var ActualLatestDeaths = data.FromCountryNameDeaths("Denmark");
128+
129+
//Insert here the current deaths numbers in the API
130+
var ExpectedLatestDeaths = "187";
131+
132+
Assert.AreEqual(ExpectedLatestDeaths, ActualLatestDeaths);
133+
}
134+
123135
[TestMethod]
124136
public void TestFromCountryNamePopulation()
125137
{
@@ -139,7 +151,7 @@ public void TestFromIDConfirmed()
139151
var ActualLatestConfirmed = data.FromIDConfirmed("94");
140152

141153
//Insert here the current confirmed numbers in the API
142-
var ExpectedLatestConfirmed = "4369";
154+
var ExpectedLatestConfirmed = "4681";
143155

144156
Assert.AreEqual(ExpectedLatestConfirmed, ActualLatestConfirmed);
145157
}
@@ -163,7 +175,7 @@ public void TestFromIDDeaths()
163175
var ActualLatestDeaths = data.FromIDDeaths("94");
164176

165177
//Insert here the current deaths numbers in the API
166-
var ExpectedLatestDeaths = "179";
178+
var ExpectedLatestDeaths = "187";
167179

168180
Assert.AreEqual(ExpectedLatestDeaths, ActualLatestDeaths);
169181
}
0 Bytes
Binary file not shown.
512 Bytes
Binary file not shown.

CovidSharp/CovidSharpTest/obj/Debug/CovidSharpTest.csproj.FileListAbsolute.txt

Lines changed: 126 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,3 +124,129 @@ C:\Users\Abdirahiim\source\repos\CovidSharp\CovidSharpTest\obj\Debug\CovidSharpT
124124
C:\Users\Abdirahiim\source\repos\CovidSharp\CovidSharpTest\obj\Debug\CovidSharpTest.csproj.CopyComplete
125125
C:\Users\Abdirahiim\source\repos\CovidSharp\CovidSharpTest\obj\Debug\CovidSharpTest.dll
126126
C:\Users\Abdirahiim\source\repos\CovidSharp\CovidSharpTest\obj\Debug\CovidSharpTest.pdb
127+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\NUnit3.TestAdapter.dll
128+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\NUnit3.TestAdapter.pdb
129+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\nunit.engine.dll
130+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\nunit.engine.api.dll
131+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll
132+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll
133+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll
134+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\CovidSharpTest.dll.config
135+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\CovidSharpTest.dll
136+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\CovidSharpTest.pdb
137+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\Microsoft.Win32.Primitives.dll
138+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\netstandard.dll
139+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.AppContext.dll
140+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Collections.Concurrent.dll
141+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Collections.dll
142+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Collections.NonGeneric.dll
143+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Collections.Specialized.dll
144+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.ComponentModel.dll
145+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.ComponentModel.EventBasedAsync.dll
146+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.ComponentModel.Primitives.dll
147+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.ComponentModel.TypeConverter.dll
148+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Console.dll
149+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Data.Common.dll
150+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Diagnostics.Contracts.dll
151+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Diagnostics.Debug.dll
152+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Diagnostics.FileVersionInfo.dll
153+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Diagnostics.Process.dll
154+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Diagnostics.StackTrace.dll
155+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Diagnostics.TextWriterTraceListener.dll
156+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Diagnostics.Tools.dll
157+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Diagnostics.TraceSource.dll
158+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Diagnostics.Tracing.dll
159+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Drawing.Primitives.dll
160+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Dynamic.Runtime.dll
161+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Globalization.Calendars.dll
162+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Globalization.dll
163+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Globalization.Extensions.dll
164+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.IO.Compression.dll
165+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.IO.Compression.ZipFile.dll
166+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.IO.dll
167+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.IO.FileSystem.dll
168+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.IO.FileSystem.DriveInfo.dll
169+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.IO.FileSystem.Primitives.dll
170+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.IO.FileSystem.Watcher.dll
171+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.IO.IsolatedStorage.dll
172+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.IO.MemoryMappedFiles.dll
173+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.IO.Pipes.dll
174+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.IO.UnmanagedMemoryStream.dll
175+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Linq.dll
176+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Linq.Expressions.dll
177+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Linq.Parallel.dll
178+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Linq.Queryable.dll
179+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Net.Http.dll
180+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Net.NameResolution.dll
181+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Net.NetworkInformation.dll
182+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Net.Ping.dll
183+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Net.Primitives.dll
184+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Net.Requests.dll
185+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Net.Security.dll
186+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Net.Sockets.dll
187+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Net.WebHeaderCollection.dll
188+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Net.WebSockets.Client.dll
189+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Net.WebSockets.dll
190+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.ObjectModel.dll
191+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Reflection.dll
192+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Reflection.Extensions.dll
193+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Reflection.Primitives.dll
194+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Resources.Reader.dll
195+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Resources.ResourceManager.dll
196+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Resources.Writer.dll
197+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Runtime.CompilerServices.VisualC.dll
198+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Runtime.dll
199+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Runtime.Extensions.dll
200+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Runtime.Handles.dll
201+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Runtime.InteropServices.dll
202+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Runtime.InteropServices.RuntimeInformation.dll
203+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Runtime.Numerics.dll
204+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Runtime.Serialization.Formatters.dll
205+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Runtime.Serialization.Json.dll
206+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Runtime.Serialization.Primitives.dll
207+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Runtime.Serialization.Xml.dll
208+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Security.Claims.dll
209+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Security.Cryptography.Algorithms.dll
210+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Security.Cryptography.Csp.dll
211+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Security.Cryptography.Encoding.dll
212+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Security.Cryptography.Primitives.dll
213+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Security.Cryptography.X509Certificates.dll
214+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Security.Principal.dll
215+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Security.SecureString.dll
216+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Text.Encoding.dll
217+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Text.Encoding.Extensions.dll
218+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Text.RegularExpressions.dll
219+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Threading.dll
220+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Threading.Overlapped.dll
221+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Threading.Tasks.dll
222+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Threading.Tasks.Parallel.dll
223+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Threading.Thread.dll
224+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Threading.ThreadPool.dll
225+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Threading.Timer.dll
226+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.ValueTuple.dll
227+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Xml.ReaderWriter.dll
228+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Xml.XDocument.dll
229+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Xml.XmlDocument.dll
230+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Xml.XmlSerializer.dll
231+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Xml.XPath.dll
232+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\System.Xml.XPath.XDocument.dll
233+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\CovidSharp.dll
234+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\Microsoft.VisualStudio.CodeCoverage.Shim.dll
235+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\Microsoft.VisualStudio.TestPlatform.TestFramework.dll
236+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll
237+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\Newtonsoft.Json.dll
238+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\nunit.framework.dll
239+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\RestSharp.dll
240+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\CovidSharp.pdb
241+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\Microsoft.VisualStudio.TestPlatform.TestFramework.xml
242+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
243+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\Newtonsoft.Json.xml
244+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\nunit.framework.pdb
245+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\nunit.framework.xml
246+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\bin\Debug\RestSharp.xml
247+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\obj\Debug\CovidSharpTest.csprojAssemblyReference.cache
248+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\obj\Debug\CovidSharpTest.dll.config
249+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\obj\Debug\CovidSharpTest.csproj.CoreCompileInputs.cache
250+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\obj\Debug\CovidSharpTest.csproj.CopyComplete
251+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\obj\Debug\CovidSharpTest.dll
252+
C:\Users\Abdirahiim\source\repos\CovidSharp - Github\CovidSharp\CovidSharpTest\obj\Debug\CovidSharpTest.pdb

0 commit comments

Comments
 (0)